declare interface BottomSheetVariant { /** * @default "left" */ headerAlign: "left" | "center"; /** * @default false */ skipAnimation: boolean; } declare type BottomSheetVariantMap = { [key in keyof BottomSheetVariant]: Array; }; export declare type BottomSheetVariantProps = Partial; export declare type BottomSheetSlotName = "positioner" | "backdrop" | "content" | "header" | "body" | "footer" | "title" | "description" | "closeButton"; export declare const bottomSheetVariantMap: BottomSheetVariantMap; export declare const bottomSheet: (( props?: BottomSheetVariantProps, ) => Record) & { splitVariantProps: ( props: T, ) => [BottomSheetVariantProps, Omit]; }