import React from 'react'; export interface LunarDateProps extends React.HTMLAttributes { year: number; month: number; date: number; format?: 'month' | 'date' | 'month-date'; showJieqi?: boolean; } declare const LunarDate: (props: LunarDateProps) => import("react/jsx-runtime").JSX.Element; export default LunarDate;