import { CodeInputConfig } from '../core/types'; export declare class CodeInput { element: HTMLElement; private inputs; private cleanup; private config; constructor(config: CodeInputConfig); private createInput; private updateValue; getValue(): string; setValue(value: string): void; setError(hasError: boolean): void; setDisabled(disabled: boolean): void; clear(): void; focus(): void; destroy(): void; }