import type { AttachmentProps } from "./index"; import * as React from "react"; interface GenericAttachmentProps extends AttachmentProps { icon?: "archive" | "audio" | "sketch" | "acrobat" | "ae" | "ai" | "code" | "document" | "spreadsheet" | "webcode" | "unknown"; children?: React.ReactNode; } declare function GenericAttachment(props: GenericAttachmentProps): import("react/jsx-runtime").JSX.Element; export default GenericAttachment; //# sourceMappingURL=GenericAttachment.d.ts.map