export type AccentDropZoneHandles = Readonly<{ reset: () => void; }>; export type AccentDropZoneProps = Readonly<{ title?: string; ctaIcon?: React.ComponentType>; labels?: { cta?: string; drop?: string; invalidFileType?: string; fullScreenDrop?: string; }; className?: string; /** Disable file selection (paste, drag and drop, etc.) */ disabled?: boolean; handlesRef?: React.RefObject; onFileSelected: (file: File) => void; onDrag?: () => void; }>; export declare const AccentDropZone: ({ title, ctaIcon, labels, className, disabled, handlesRef, onFileSelected, onDrag, }: AccentDropZoneProps) => import("react").JSX.Element; //# sourceMappingURL=AccentDropZone.d.ts.map