import { Parameter } from "./../index";
export interface FooterHeaderFooterInterface {
    center?: string;
    left?: string;
    right?: string;
}
export declare class FooterHeaderFooter implements FooterHeaderFooterInterface, Parameter {
    center?: string;
    left?: string;
    right?: string;
    constructor(data: any);
    static getCenterDefault(): string;
    static getCenterDescription(): string;
    static getLeftDefault(): string;
    static getLeftDescription(): string;
    static getRightDefault(): string;
    static getRightDescription(): string;
    static fromJson(data: any): FooterHeaderFooter;
    toJson(): any;
    clone(): FooterHeaderFooter;
}
