import type { ActionSheetListCloseData, ActionSheetListData, ActionSheetStaticHtmlData } from 'q2-tecton-common/lib/types/action-sheet'; interface ActionSheetComponent { hoist: boolean; } export declare const shouldShowActionSheet: (component: ActionSheetComponent, event?: KeyboardEvent | MouseEvent) => boolean; export declare const buildListData: (component: ActionSheetListComponent, event?: MouseEvent | KeyboardEvent) => Promise; interface ActionSheetListComponent { optionList: HTMLQ2OptionListElement; label: string; _getSlotsHtml?: () => Promise; } export declare const showActionSheetList: (component: ActionSheetListComponent, event?: MouseEvent | KeyboardEvent) => Promise; export {};