import type { TextFieldProps } from '@mui/material'; import React from 'react'; /** Props for {@link CodeTextField}. */ export type CodeTextFieldProps = TextFieldProps & { codeInput?: string; disabled?: boolean; onEnter?: () => void; setCodeInput?: (code?: string) => void; validCode?: boolean | null; }; /** Access code text field with success/error adornments and enter-key support. */ export declare const CodeTextField: React.FC; //# sourceMappingURL=CodeTextField.d.ts.map