import { ParametricFilter } from '../core/image_processing/ParametricFilters'; import type { DeepPartial } from '../core/utils/utils'; /** Options for creating a document from images. */ export declare class AddPageOptions { /** The list of filters applied to the page. If not specified, no filters are applied. */ filters: ParametricFilter[] | null; /** The index at which the new page will be inserted. If not provided, the page will be added at the end of the document. */ index: number | null; /** Recognizes documents on created page. Default is true */ documentDetection: boolean; /** @param source {@displayType `DeepPartial`} */ constructor(source?: DeepPartial); }