import { PipeTransform } from '@angular/core';
import { JunteUIConfig } from '../../../config';
declare const formats: {
    x1: string;
    x2: string;
    x3: string;
    full: string;
};
/**
 * - `x1`: One char. 'M' for Monday.
 * - `x2`: Two chars. 'Mo' for Monday.
 * - `x3`: Three chars. 'Mon' for Monday.
 * - `full`: Full weekday name. 'Monday' for Monday.
 */
export declare type WeekdayNameFormat = keyof typeof formats;
export declare class WeekdayNamePipe implements PipeTransform {
    private config;
    constructor(config: JunteUIConfig);
    transform(day: number, view?: WeekdayNameFormat): string;
}
export {};
