export declare const elCalendarCardColors: readonly ["purple", "orange", "brandBlue", "green", "rose", "indigo", "red", "pink", "cyan", "sapphire", "teal", "yellow", "gray"]; export type ElCalendarCardColor = (typeof elCalendarCardColors)[number]; export declare const elCalendarCardStatuses: readonly ["confirmed", "to-be-confirmed", "past"]; export type ElCalendarCardStatus = (typeof elCalendarCardStatuses)[number]; declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{ height?: number; color: ElCalendarCardColor; status?: ElCalendarCardStatus; primaryRow?: string; secondaryRow?: string; tertiaryRow?: string; horizontalPaddingLeft?: boolean; cursor?: "default" | "pointer"; }>, { height: number; color: string; status: string; label: undefined; primaryRow: undefined; secondaryRow: undefined; tertiaryRow: undefined; horizontalPaddingLeft: boolean; cursor: string; }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly, { height: number; color: string; status: string; label: undefined; primaryRow: undefined; secondaryRow: undefined; tertiaryRow: undefined; horizontalPaddingLeft: boolean; cursor: string; }>>>, { color: ElCalendarCardColor; primaryRow: string; secondaryRow: string; tertiaryRow: string; status: ElCalendarCardStatus; cursor: "default" | "pointer"; height: number; horizontalPaddingLeft: boolean; }, {}>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {};