declare interface AttachmentInputItemVariant { /** * @default "general" */ type: "general" | "image"; } declare type AttachmentInputItemVariantMap = { [key in keyof AttachmentInputItemVariant]: Array; }; export declare type AttachmentInputItemVariantProps = Partial; export declare type AttachmentInputItemSlotName = "root" | "image" | "thumbnail" | "metadata" | "name" | "size" | "badge" | "badgeLabel" | "backdrop" | "actionButton" | "removeButton"; export declare const attachmentInputItemVariantMap: AttachmentInputItemVariantMap; export declare const attachmentInputItem: (( props?: AttachmentInputItemVariantProps, ) => Record) & { splitVariantProps: ( props: T, ) => [AttachmentInputItemVariantProps, Omit]; }