export type ActionSheetItemVariant = 'default' | 'destructive' | 'cancel'; export interface ActionSheetItem { id: string; label: string; description?: string; variant?: ActionSheetItemVariant; disabled?: boolean; } interface ActionSheetProps { open?: boolean; title?: string; message?: string; actions?: ActionSheetItem[]; cancelLabel?: string; class?: string; onselect?: (id: string) => void; onclose?: () => void; } declare const ActionSheet: import("svelte").Component; type ActionSheet = ReturnType; export default ActionSheet;