import { SvelteComponent } from "svelte"; export declare enum BottomSheetStates { FULL = 1, PEEK = 2, IDLE = 4, SETTLING = 8, DRAGGING = 16 } declare const __propDef: { props: { state: BottomSheetStates; colourBackground?: any; colourUnderlay?: any; colourBorder?: any; width?: any; fullHeight?: any; peekHeight?: any; idleHeight?: any; threshold?: number; roundness?: any; }; events: { touchmove: TouchEvent; } & { [evt: string]: CustomEvent; }; slots: { default: { state: BottomSheetStates; }; overlay: {}; }; }; export type BottomSheetProps = typeof __propDef.props; export type BottomSheetEvents = typeof __propDef.events; export type BottomSheetSlots = typeof __propDef.slots; export default class BottomSheet extends SvelteComponent { } export {};