import { ExtractPropTypes } from 'vue';
declare const Props: {
    modelValue: {
        type: StringConstructor;
        default: string;
    };
    id: {
        type: (StringConstructor | NumberConstructor)[];
        default: string;
    };
    maxSize: {
        type: NumberConstructor;
        default: number;
    };
    accept: {
        type: () => string[];
        default: () => string[];
    };
    removable: {
        type: BooleanConstructor;
        default: boolean;
    };
    loading: {
        type: BooleanConstructor;
        default: boolean;
    };
    disabled: {
        type: BooleanConstructor;
        default: boolean;
    };
    required: {
        type: BooleanConstructor;
        default: boolean;
    };
    label: {
        type: StringConstructor;
        default: string;
    };
    size: {
        type: StringConstructor;
        default: string;
        options: string[];
    };
};
export type KDropzoneProps = Readonly<ExtractPropTypes<typeof Props>>;
export default Props;
