import type { FormControlProps, TextFieldProps } from '@mui/material'; import React from 'react'; export type BigIntTextFieldProps = TextFieldProps & { defaultFixedPoint?: number; defaultRawValue?: string; hideAdornment?: boolean; onChangeFixedPoint?: (value?: bigint) => void; onChangeFormatted?: (value?: string) => void; resetValue?: number; }; export declare const BigIntTextField: React.FC; export interface InputWithFormControlProps extends FormControlProps { textFieldProps?: BigIntTextFieldProps; } export declare const WithFormControl: React.FC; //# sourceMappingURL=TextField.d.ts.map