export declare function toBanglaDigits(input: string | number): string;
export declare function toEnglishDigits(input: string): string;
export declare function getBanglaDate(date: Date): {
    day: string;
    month: string;
    year: string;
};
export declare function formatBanglaDate(date: Date): string;
export declare function formatBanglaTime(date: Date, includeSeconds?: boolean): string;
export declare function formatBanglaTime12(date: Date, includeSeconds?: boolean): string;
export declare function getCurrentBanglaDateTime(): {
    banglaDate: string;
    banglaTime: string;
};
export declare function getBanglaWeekNumber(date: Date): string;
export declare function getBanglaMonthFromEnglish(date: Date): string;
export declare function getDayName(date: Date): string;
export declare function getEnglishMonthName(date: Date): string;
export declare function getBanglaMonthName(date: Date): string;
export declare function formatBanglaDateWithBanglaMonth(date: Date): string;
export declare function formatFullBanglaDateTime(date: Date, includeSeconds?: boolean): string;
export declare function getBanglEnglishFullDateTimeInfo(date?: Date): {
    bangla: {
        day: string;
        month: string;
        year: string;
        weekday: string;
        time24: string;
        time12: string;
    };
    english: {
        day: number;
        month: string;
        year: number;
        weekday: string;
        time24: string;
        time12: string;
    };
};
export declare function formatFullDateTimeDual(date?: Date, includeSeconds?: boolean): string;
