import { SelectionHeaderFooter, Parameter } from "./../index";
export interface RemoveHeaderFooterInterface {
    headerFooterSelection?: SelectionHeaderFooter;
}
export declare class RemoveHeaderFooter implements RemoveHeaderFooterInterface, Parameter {
    headerFooterSelection?: SelectionHeaderFooter;
    constructor(data: any);
    static getHeaderFooterSelectionDescription(): string;
    static fromJson(data: any): RemoveHeaderFooter;
    toJson(): any;
    clone(): RemoveHeaderFooter;
}
