export declare class IdVerification {
    'type'?: string | null;
    'maximumRetryCount'?: number | null;
    'status'?: string | null;
    'nameMatcher'?: string | null;
    'requireLiveCapture'?: boolean | null;
    'requireMatchingSelfie'?: boolean | null;
    'holdForPrefill'?: boolean | null;
    'prefillCompleted'?: boolean | null;
    'allowedDocumentTypes'?: Array<string> | null;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
