import type { DateObj } from '../types';
interface DateToStringOptions {
    fixMonth: boolean;
}
export default function dateToString(date: DateObj, options?: DateToStringOptions): string;
export {};
