/** * Simple document upload component * Shows file input immediately without camera permission */ export interface UploadOptions { onFileSelect?: (file: File) => void; onError?: (error: string) => void; onUseCamera?: () => void; } export declare class DocumentUpload { private container; private options; private previewImage; constructor(container: HTMLElement, options?: UploadOptions); render(theme: any): void; private handleFile; private showPreview; private getTheme; destroy(): void; } //# sourceMappingURL=DocumentUpload.d.ts.map