import { PhysicalDocumentScanner, PhysicalDocumentScannerType, type PhysicalDocumentScannerJSON } from "./PhysicalDocumentScanner.js";
export type FullDocumentScannerJSON = PhysicalDocumentScannerJSON;
export declare class FullDocumentScanner extends PhysicalDocumentScanner {
    readonly type = PhysicalDocumentScannerType.FullDocument;
    constructor();
    toJSONObject(): FullDocumentScannerJSON;
}
