import { type RefObject } from 'react'; import { type FileMetadata } from '../../types/fileUploader'; export interface UseFileUploaderAttachmentProps { attachmentRef: RefObject; file: File; meta?: FileMetadata; name: string; onError?: (error: string) => void; } export declare const useFileUploaderAttachment: ({ attachmentRef, file, name, meta, onError, }: UseFileUploaderAttachmentProps) => void;