type BSDate = { year: number; month: number; day: number; }; export interface FiscalYearInfo { startYear: number; endYear: number; formatted: string; } /** * Returns the Nepali Fiscal Year info for a given date. * In Nepal, the fiscal year starts on Shrawan 1 (Month 4 of the BS calendar). */ export declare function getFiscalYear(dateInput: Date | string | number | BSDate): FiscalYearInfo; export {};