import { type BottomSheetSize } from './BottomSheet.svelte'; type Example = 'confirm' | 'actions' | 'form' | 'scroll' | 'minimal'; type $$ComponentProps = { example?: Example; title?: string; description?: string; size?: BottomSheetSize; maxHeight?: string; closeOnBackdrop?: boolean; closeOnEscape?: boolean; showHandle?: boolean; showClose?: boolean; blurBackdrop?: boolean; draggable?: boolean; pullToClose?: boolean; }; declare const BottomSheetStory: import("svelte").Component<$$ComponentProps, {}, "">; type BottomSheetStory = ReturnType; export default BottomSheetStory;