import type { DeepPartial } from "../utils"; /** Source of the text for the MRZ finder example overlay. */ export type MrzFinderLayoutPreset = TwoLineMrzFinderLayoutPreset | ThreeLineMrzFinderLayoutPreset | NoLayoutPreset; /** @internal */ export declare namespace MrzFinderLayoutPreset { /** @internal */ function from(source: DeepPartial): MrzFinderLayoutPreset; } /** A ready-to-use preset 2-line text to be displayed. */ export declare class TwoLineMrzFinderLayoutPreset { readonly _type: "TwoLineMRZFinderLayoutPreset"; /** The first line of the MRZ text. @defaultValue "I`} */ constructor(source?: DeepPartial); } /** A ready-to-use preset 3-line text to be displayed. */ export declare class ThreeLineMrzFinderLayoutPreset { readonly _type: "ThreeLineMRZFinderLayoutPreset"; /** The first line of the MRZ text. @defaultValue "I`} */ constructor(source?: DeepPartial); } /** No layout preset. */ export declare class NoLayoutPreset { readonly _type: "NoLayoutPreset"; /** @param source {@displayType `DeepPartial`} */ constructor(source?: DeepPartial); }