import { HeaderFooter, Parameter } from "./../index";
export interface AddHeaderFooterInterface {
    headerFooterContent?: HeaderFooter;
}
export declare class AddHeaderFooter implements AddHeaderFooterInterface, Parameter {
    headerFooterContent?: HeaderFooter;
    constructor(data: any);
    static getHeaderFooterContentDescription(): string;
    static fromJson(data: any): AddHeaderFooter;
    toJson(): any;
    clone(): AddHeaderFooter;
}
