declare interface ExtendedActionSheetItemVariant { /** * @default "neutral" */ tone: "neutral" | "critical"; } declare type ExtendedActionSheetItemVariantMap = { [key in keyof ExtendedActionSheetItemVariant]: Array; }; export declare type ExtendedActionSheetItemVariantProps = Partial; export declare const extendedActionSheetItemVariantMap: ExtendedActionSheetItemVariantMap; export declare const extendedActionSheetItem: (( props?: ExtendedActionSheetItemVariantProps, ) => string) & { splitVariantProps: ( props: T, ) => [ExtendedActionSheetItemVariantProps, Omit]; }