ov25-ui
Version:
A UI configurator for OV25 product visualization
13 lines (12 loc) • 484 B
TypeScript
import React from 'react';
type SheetSide = 'left' | 'right';
/**
* Snap2: compatible-modules sheet on LEFT or RIGHT while the variant sheet uses the other edge.
* Uses the same {@link Snap2SettingsSheet} chrome as variants with only the Modules option (not
* {@link ModuleBottomPanel}, which is the bottom strip). Tab/list shell only — never wizard mode.
*/
export declare const Snap2ModulesSheet: React.FC<{
portalTarget: Element;
sheetSide: SheetSide;
}>;
export {};