/** @preserve Copyright (c) KNOWLEDGECODE - MIT License */
type CompiledObject = string[];

interface LocaleOptions {
    compiledObj: CompiledObject;
    style: 'long' | 'short' | 'narrow';
    case?: 'uppercase' | 'lowercase';
}

/**
 * @file Persian (fa)
 */

declare const _default: {
    getLocale(): string;
    getMonthList(options: LocaleOptions): string[];
    getDayOfWeekList(options: LocaleOptions): string[];
    getMeridiemList(options: LocaleOptions): string[];
};

export { _default as default };
