import { Parameter } from "./../index";
export interface SanitizePagesInterface {
    dpi?: number;
    enabled?: boolean;
    pages?: string;
}
export declare class SanitizePages implements SanitizePagesInterface, Parameter {
    dpi?: number;
    enabled?: boolean;
    pages?: string;
    constructor(data: any);
    static getDpiDefault(): number;
    static getDpiDescription(): string;
    static getDpiMin(): number;
    static getDpiMax(): number;
    static getEnabledDefault(): boolean;
    static getEnabledDescription(): string;
    static getPagesDefault(): string;
    static getPagesDescription(): string;
    static fromJson(data: any): SanitizePages;
    toJson(): any;
    clone(): SanitizePages;
}
