import { StoryAnnotations } from '@storybook/types'; type RegionType = 'Title' | 'Description' | 'Source' | 'Canvas' | 'Controls' | 'ArgTypes'; interface PresetProps { availableImport?: string | undefined; primaryStory?: StoryAnnotations | undefined; hideRegions?: RegionType[] | undefined; /** * Specify the initial state of the source panel * hidden: the source panel is hidden by default * shown: the source panel is shown by default * none: the source panel is not available and the button to show it is hidden * @default 'hidden' */ canvasSourceState?: 'hidden' | 'shown' | 'none'; } export declare const Preset: (props: PresetProps) => import("react/jsx-runtime").JSX.Element; export default Preset; //# sourceMappingURL=ExplorePreset.d.ts.map