import { ParsedDate, SplittedDate, voidFunction } from "../Types"; export declare const range: (start: number, end: number, step?: number) => number[]; export declare const zeroPad: (num: number) => string; export declare const executionDelegation: (execution: voidFunction, delegatedExecution: voidFunction) => void; 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; export declare const childOf: (childNode: any, parentNode: any) => boolean;