import { type StyledProps } from "./Styled"; /** * moaui Styled TextField * * @param {StyledProps} props - defaultValue, title, titlePosition, error, disabled, placeholder, onChange, value, autoFocus, type, width, height, spacing, textAlign, multiline, rows, maxRows * @example * {}} * value="Value" * autoFocus={false} * type="text" * width="100px" * height="30px" * spacing={1} * textAlign="left" * multiline={false} * rows={1} * maxRows={1} * /> * @returns {React.ReactElement} moaTextField */ declare const TextField: (props: StyledProps) => import("react/jsx-runtime").JSX.Element; declare const SampleProps: { id: string; autoFocus: boolean; type: string; placeholder: string; title: string; titlePosition: string; error: boolean; disabled: boolean; onChange: () => void; wrappedWidth: string; width: string; height: string; spacing: number; textAlign: string; multiline: boolean; rows: number; maxRows: number; }; export default TextField; export { type StyledProps as TextFieldProps, SampleProps as TextFieldSample, }; //# sourceMappingURL=index.d.ts.map