import { KendoComponent } from '../_types/component';
export declare const DROPZONE_CLASSNAME = "k-external-dropzone";
declare const states: ("disabled" | "hover")[];
export type KendoDropzoneProps = {
    icon?: string;
    hint?: string | boolean;
    note?: string;
};
export type KendoDropzoneState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const Dropzone: KendoComponent<KendoDropzoneProps & KendoDropzoneState & React.HTMLAttributes<HTMLDivElement>>;
export default Dropzone;
