export type CodeInputFieldProps = Readonly<{ invalid?: boolean; onLeftArrow?: () => void; onRightArrow?: () => void; }> & React.ComponentPropsWithoutRef<"input"> & React.RefAttributes; export type CodeInputFieldRef = { focus: () => void; element: HTMLInputElement | null; }; export declare function CodeInputField({ invalid, onLeftArrow, onRightArrow, ref, ...rest }: CodeInputFieldProps): import("react").JSX.Element; export declare namespace CodeInputField { var displayName: string; } //# sourceMappingURL=CodeInputField.d.ts.map