declare interface AttachmentInputVariant { } declare type AttachmentInputVariantMap = { [key in keyof AttachmentInputVariant]: Array; }; export declare type AttachmentInputVariantProps = Partial; export declare type AttachmentInputSlotName = "root" | "dropzone" | "dropzoneLabel" | "container" | "itemGroup"; export declare const attachmentInputVariantMap: AttachmentInputVariantMap; export declare const attachmentInput: (( props?: AttachmentInputVariantProps, ) => Record) & { splitVariantProps: ( props: T, ) => [AttachmentInputVariantProps, Omit]; }