import dayjs from 'dayjs'; import { IDateProps, TDateValidatorResult } from '../_types'; export interface IEndOfProps { /** * Unit to be used. */ unit: dayjs.OpUnitType; /** * Timezone to be used. */ timezone?: [tz: string, keepLocalTimes?: boolean]; } /** * Set the date to the end of `unit`. */ export declare const setEndOf: (props: IEndOfProps & Omit) => TDateValidatorResult;