declare interface ExtendedActionSheetVariant { } declare type ExtendedActionSheetVariantMap = { [key in keyof ExtendedActionSheetVariant]: Array; }; export declare type ExtendedActionSheetVariantProps = Partial; export declare type ExtendedActionSheetSlotName = "backdrop" | "positioner" | "content" | "header" | "title" | "list" | "group" | "footer" | "closeButton"; export declare const extendedActionSheetVariantMap: ExtendedActionSheetVariantMap; export declare const extendedActionSheet: (( props?: ExtendedActionSheetVariantProps, ) => Record) & { splitVariantProps: ( props: T, ) => [ExtendedActionSheetVariantProps, Omit]; }