import { InputBaseProps } from './types'; export type InputBaseStates = 'error' | 'focus' | 'disabled' | 'typed'; export type InputBaseParts = 'wrapper' | 'innerWrapper' | 'label' | 'errorMessage' | 'description' | 'labelRow'; export type IconLessInputBaseParts = InputBaseParts; export type InputBaseComposition = `${InputBaseParts}:${InputBaseStates}` | InputBaseParts; export declare const useInputBaseStyles: (props: InputBaseProps) => { wrapperStyle: any[]; innerWrapperStyle: any[]; leftIconStyles: {}; rightIconStyles: {}; labelStyle: any[]; errorStyle: any[]; descriptionStyle: any[]; labelRowStyle: any[]; }; //# sourceMappingURL=styles.d.ts.map