export declare class Mode {
    value: string;
    static image: Mode;
    static page: Mode;
    constructor(value: string);
    toString(): string;
}
