declare interface ActionSheetVariant { } declare type ActionSheetVariantMap = { [key in keyof ActionSheetVariant]: Array; }; export declare type ActionSheetVariantProps = Partial; export declare type ActionSheetSlotName = "backdrop" | "positioner" | "content" | "header" | "title" | "description" | "list" | "closeButton"; export declare const actionSheetVariantMap: ActionSheetVariantMap; export declare const actionSheet: (( props?: ActionSheetVariantProps, ) => Record) & { splitVariantProps: ( props: T, ) => [ActionSheetVariantProps, Omit]; }