import * as react_jsx_runtime from 'react/jsx-runtime'; import * as class_variance_authority_types from 'class-variance-authority/types'; import * as React from 'react'; import { VariantProps } from 'class-variance-authority'; import { Button } from './button.js'; declare const attachmentVariants: (props?: ({ size?: "default" | "xs" | "sm" | null | undefined; orientation?: "vertical" | "horizontal" | null | undefined; } & class_variance_authority_types.ClassProp) | undefined) => string; type AttachmentState = "idle" | "uploading" | "processing" | "error" | "done"; declare function Attachment({ className, state, size, orientation, ...props }: React.ComponentProps<"div"> & VariantProps & { state?: AttachmentState; }): react_jsx_runtime.JSX.Element; declare const attachmentMediaVariants: (props?: ({ variant?: "image" | "icon" | null | undefined; } & class_variance_authority_types.ClassProp) | undefined) => string; declare function AttachmentMedia({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps): react_jsx_runtime.JSX.Element; declare function AttachmentContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element; declare function AttachmentTitle({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element; declare function AttachmentDescription({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element; declare function AttachmentActions({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element; declare function AttachmentAction({ className, variant, size, ...props }: React.ComponentProps): react_jsx_runtime.JSX.Element; declare function AttachmentTrigger({ className, asChild, type, ...props }: React.ComponentProps<"button"> & { asChild?: boolean; }): react_jsx_runtime.JSX.Element; declare function AttachmentGroup({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element; export { Attachment, AttachmentAction, AttachmentActions, AttachmentContent, AttachmentDescription, AttachmentGroup, AttachmentMedia, type AttachmentState, AttachmentTitle, AttachmentTrigger, attachmentVariants };