declare interface BottomSheetHandleVariant { } declare type BottomSheetHandleVariantMap = { [key in keyof BottomSheetHandleVariant]: Array; }; export declare type BottomSheetHandleVariantProps = Partial; export declare type BottomSheetHandleSlotName = "root" | "touchArea"; export declare const bottomSheetHandleVariantMap: BottomSheetHandleVariantMap; export declare const bottomSheetHandle: (( props?: BottomSheetHandleVariantProps, ) => Record) & { splitVariantProps: ( props: T, ) => [BottomSheetHandleVariantProps, Omit]; }