import * as React from "react"; import { CommonStyleProps } from "../systemHelpers"; export declare type StatelessTextInputProps = CommonStyleProps & { hasError?: boolean; disabled?: boolean; } & React.HTMLAttributes; export declare const StatelessTextInput: import("styled-components").StyledComponent<"input", any, React.PropsWithChildren, never>;