import { IconType } from "../../../icon"; export interface CommonTextInputArgs { label: string; placeholder: string; inputIcon?: IconType; } export declare const getCommonTextInputArgsWithSpecialCharacters: (args: CommonTextInputArgs) => { label: string; placeholder: string; inputIcon?: IconType; }; export declare const getCommonTextInputArgs: (labelInlineDefault?: boolean) => { disabled: boolean; readOnly: boolean; prefix: string; label: string; inputHint: string; placeholder: string; labelInline: boolean; inputWidth: number; size: string; inputIcon: undefined; required: boolean; error: string; warning: string; }; export declare const commonTextInputArgTypes: () => { disabled: { control: { type: string; }; }; size: { options: string[]; control: { type: string; }; }; inputIcon: { options: string[]; control: { type: string; }; }; labelInline: { control: { type: string; }; }; inputWidth: { control: { type: string; min: number; max: number; step: number; }; }; containerWidth: { control: { type: string; min: number; max: number; step: number; }; }; required: { control: { type: string; }; }; error: { control: { type: string; }; }; warning: { control: { type: string; }; }; };