///
export declare const StyledPureInput: import("@emotion/styled").StyledComponent, HTMLInputElement>, "ref" | "enterKeyHint" | "onChange" | "size" | "autoComplete" | "type"> & import("../pureInput").CustomInputProps & import("react").RefAttributes & {
theme?: import("@emotion/react").Theme;
}, {}, {}>;
export declare const StyledTextField: import("@emotion/styled").StyledComponent<{
value: string;
name: string;
size: "sm" | "md" | "lg";
readOnly?: boolean;
isNumerousKeyboard?: boolean;
autoComplete?: "off" | "on";
errorMessage?: string;
showErrorMessage?: boolean;
actionIcon?: JSX.Element;
onActionClick?: () => void;
displayIcon?: JSX.Element;
label?: string | JSX.Element;
onChange?: (v: string) => void;
isDisabled?: boolean;
CustomInput?: JSX.Element;
type?: "number" | "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal";
inputClassName?: string;
trackingAttributes?: import("../../../care/components/organisms/bookingSearchBar/types").GATrackingCode;
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send";
} & Omit, "onChange" | "value" | "name"> & {
theme?: import("@emotion/react").Theme;
}, {}, {}>;