import type { FormControlProps, TextFieldProps } from '@mui/material'; import React from 'react'; /** Props for {@link BigIntTextField}. */ export type BigIntTextFieldProps = TextFieldProps & { defaultFixedPoint?: number; defaultRawValue?: string; hideAdornment?: boolean; onChangeFixedPoint?: (value?: bigint) => void; onChangeFormatted?: (value?: string) => void; resetValue?: number; }; /** Text field for entering fixed-point numeric values as bigint. */ export declare const BigIntTextField: React.FC; /** Props for {@link WithFormControl}. */ export interface InputWithFormControlProps extends FormControlProps { textFieldProps?: BigIntTextFieldProps; } /** Wraps {@link BigIntTextField} in a MUI form control. */ export declare const WithFormControl: React.FC; //# sourceMappingURL=TextField.d.ts.map