import { ParsedDate, SplittedDate } from "../NepaliDatePicker/types/types";
export declare const range: (start: number, end: number, step?: number) => number[];
export declare const zeroPad: (num: number) => string;
export declare const splitDate: (date: string, separator?: string) => SplittedDate;
export declare const stitchDate: (date: SplittedDate, separator?: string) => string;
export declare const validateDateObject: (date: SplittedDate, type?: string) => void;
export declare const getNumberOfDaysInBSMonth: (yearMonth: {
    year: number;
    month: number;
}) => number;
export declare const parseBSDate: (date: string, separator?: string) => ParsedDate;
