import { ComponentPropsWithRef, ReactNode } from "react"; export interface AttachmentProps extends ComponentPropsWithRef<"div"> { /** * Name of resource or Folder * */ name?: string; /** * Actions attachment * */ options: ReactNode | undefined; } export type AttachmentType = AttachmentProps; declare const Attachment: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default Attachment;