import { RetryLabelsConfigurationModel } from "./retry-labels-configuration.model"; import { StyleLabelsConfigurationModel } from "./style-labels-configuration.model"; /** * Interface que representa la configuración que requiere el componente de captura */ export declare class IdCaptureConfigurationModel { labels?: RetryLabelsConfigurationModel; styles?: StyleLabelsConfigurationModel; requiresBackSide?: boolean; showResponsePreview?: boolean; getSignature?: boolean; photoRetries?: number; deviceId?: string; tfWasmPath?: string; secondsForManualCapture?: number; acceptedProbability?: number; forceSideValidation?: boolean; tfModelName?: string; constructor(labels?: RetryLabelsConfigurationModel, requiresBackSide?: boolean, showResponsePreview?: boolean, getSignature?: boolean, photoRetries?: number, deviceId?: string, tfWasmPath?: string, secondsForManualCapture?: number, acceptedProbability?: number, forceSideValidation?: boolean, tfModelName?: string); }