import type { ExtractPropTypes, PropType } from 'vue';
import type { DateCell } from '../date-picker.type';
export declare const basicCellProps: {
cell: {
type: PropType<DateCell>;
};
};
export declare type BasicCellProps = ExtractPropTypes<typeof basicCellProps>;