import { PageInterval, Parameter } from "./../index";
export interface PagesHeaderFooterInterface {
    pageInterval?: PageInterval;
}
export declare class PagesHeaderFooter implements PagesHeaderFooterInterface, Parameter {
    pageInterval?: PageInterval;
    constructor(data: any);
    static getPageIntervalDescription(): string;
    static fromJson(data: any): PagesHeaderFooter;
    toJson(): any;
    clone(): PagesHeaderFooter;
}
