import type { CSSObject, Theme } from "@emotion/react"; import type { InputProps } from "../../../components/Form/Input/Input"; import type { InputTextSize } from "../../../types"; type GetInputTextStylesProps = { theme: Theme; size: InputTextSize; } & Pick; export declare const getInputTextStyles: ({ theme, size, hasError, readOnly, }: GetInputTextStylesProps) => CSSObject; export {};