declare interface ActionSheetItemVariant { /** * @default "neutral" */ tone: "neutral" | "critical"; } declare type ActionSheetItemVariantMap = { [key in keyof ActionSheetItemVariant]: Array; }; export declare type ActionSheetItemVariantProps = Partial; export declare const actionSheetItemVariantMap: ActionSheetItemVariantMap; export declare const actionSheetItem: (( props?: ActionSheetItemVariantProps, ) => string) & { splitVariantProps: ( props: T, ) => [ActionSheetItemVariantProps, Omit]; }