import { BaseComponentProps } from '../internal/base-component'; import { NonCancelableEventHandler } from '../internal/events'; export interface FileDropzoneProps extends BaseComponentProps { /** * Called when the user selects new file(s), or removes a file. * The event `detail` contains the current value of the component. */ onChange: NonCancelableEventHandler; /** * Children of the Dropzone. */ children: React.ReactNode; } export declare namespace FileDropzoneProps { interface ChangeDetail { value: File[]; } }