import { TextFieldProps as MuiTextFieldProps } from '@mui/material/TextField'; /** * TextField component props * Re-exports MUI TextFieldProps while hiding MUI-specific naming */ export interface TextFieldProps extends Omit { /** * Controls whether the label is rendered */ showLabel?: boolean; /** * The label content */ label?: React.ReactNode; /** * The helper text content */ helperText?: React.ReactNode; /** * The size of the input */ size?: 'small' | 'medium' | 'large'; /** * Placeholder text inside the input. Derived from `label` when omitted. * Pass an empty string to disable the default placeholder. */ placeholder?: string; } /** * TextField component * * Wraps MUI's TextField component with Exotel-specific defaults and styling. * All MUI TextField props are supported (except `variant`, which is fixed to outlined). */ export declare const TextField: import('../../../node_modules/react').ForwardRefExoticComponent>;