declare interface AttachmentInputTriggerVariant { } declare type AttachmentInputTriggerVariantMap = { [key in keyof AttachmentInputTriggerVariant]: Array; }; export declare type AttachmentInputTriggerVariantProps = Partial; export declare type AttachmentInputTriggerSlotName = "root" | "icon" | "itemCountArea" | "itemCount" | "maxItemCount"; export declare const attachmentInputTriggerVariantMap: AttachmentInputTriggerVariantMap; export declare const attachmentInputTrigger: (( props?: AttachmentInputTriggerVariantProps, ) => Record) & { splitVariantProps: ( props: T, ) => [AttachmentInputTriggerVariantProps, Omit]; }