export declare const INPUT_BASE_ARGS: { errorText: { name: string; description: string; table: { category: string; defaultValue: { summary: string; }; }; }; helpText: { name: string; description: string; table: { category: string; defaultValue: { summary: string; }; }; }; placeholder: { description: string; table: { category: string; defaultValue: { summary: string; }; }; }; value: { description: string; table: { category: string; defaultValue: { summary: string; }; }; }; label: { description: string; table: { category: string; defaultValue: { summary: string; }; }; }; ariaLabelledByElements: { name: string; description: string; type: { summary: string; }; table: { category: string; defaultValue: { summary: string; }; }; }; required: { description: string; table: { category: string; defaultValue: { summary: string; }; }; control: { type: string; }; }; hideRequired: { name: string; description: string; control: { type: string; }; table: { category: string; defaultValue: { summary: string; }; }; }; optional: { description: string; control: { type: string; }; table: { category: string; defaultValue: { summary: string; }; }; }; disabled: { description: string; table: { category: string; defaultValue: { summary: string; }; }; }; readonly: { description: string; table: { category: string; defaultValue: { summary: string; }; }; }; id: { description: string; table: { category: string; defaultValue: { summary: string; }; }; }; minLength: { name: string; description: string; control: string; table: { category: string; defaultValue: { summary: string; }; }; }; maxLength: { name: string; description: string; control: string; table: { category: string; defaultValue: { summary: string; }; }; }; }; export declare const INPUT_TEXT_ARGS: { pattern: { description: string; control: string; table: { category: string; defaultValue: { summary: string; }; }; }; }; export declare const INPUT_NUMERIC_ARGS: { min: { description: string; control: string; }; max: { description: string; control: string; }; step: { description: string; control: string; table: { defaultValue: { summary: string; }; }; }; }; export declare const INPUT_A11Y_ARGS: { ariaDescription: { name: string; description: string; table: { category: string; }; }; }; export declare const SKELETON_ARG: { skeleton: { description: string; control: { type: string; }; table: { defaultValue: { summary: string; }; }; }; }; export declare const START_ICON_ARG: { startIcon: { name: string; description: string; control: { type: string; }; table: { category: string; }; }; }; export declare const END_ICON_ARG: { endIcon: { name: string; description: string; control: { type: string; }; table: { category: string; }; }; }; export declare const argsExclude: (args: { [index: string]: any; }, exclusions: string[]) => { [index: string]: any; }; export declare const argsOnly: (args: { [index: string]: any; }, inclusions: string[]) => { [index: string]: any; };