import { SvelteComponent, Snippet } from 'svelte'; import { HTMLAttributes } from 'svelte/elements'; export interface Props { class?: string; /** * Component's HTML Element * * @default 'div' */ component?: string | typeof SvelteComponent; /** * Allows to open/close Action Sheet and set its initial state * * @default false */ opened?: boolean; /** * Enables Action Sheet backdrop (dark semi transparent layer behind) * * @default true */ backdrop?: boolean; /** * Click handler on backdrop element */ onBackdropClick?: (e: any) => void; } interface ActionsProps {} interface ActionsProps extends Props {} interface ActionsEvents extends Record<'',{}>{} declare class Actions extends SvelteComponent< ActionsProps & Omit, keyof Props>, ActionsEvents, { } > {} export default Actions;