import type { returnType } from '../../_utils';
import type { PropType, ExtractPropTypes } from 'vue';
export declare const dkDatePickerPanelProps: {
    readonly modelValue: returnType<PropType<string>, string | null>;
    readonly disabled: returnType<BooleanConstructor, boolean>;
    readonly width: returnType<PropType<string>, string | null>;
    readonly firstDayOfWeek: returnType<NumberConstructor, number | null>;
    readonly disabledDate: returnType<PropType<(date: Date) => boolean>, ((date: Date) => boolean) | undefined>;
};
export type DatePickerPanelProps = ExtractPropTypes<typeof dkDatePickerPanelProps>;
