export declare const UPLOAD_CLASSNAME = "k-upload";
declare const states: ("disabled" | "hover")[];
export type KendoUploadProps = {
    async?: boolean;
    empty?: boolean;
    actions?: boolean;
    actionsLayout?: 'start' | 'center' | 'end' | 'stretched';
    status?: 'upload' | 'uploading' | 'done' | 'failed';
};
export type KendoUploadState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const Upload: {
    (props: KendoUploadProps & KendoUploadState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    states: ("disabled" | "hover")[];
    options: {};
    className: string;
    defaultOptions: {
        readonly actionsLayout: "end";
    };
};
export default Upload;
