import { CSSProp } from 'styled-components'; import { TTheme } from '../../../types/TTheme'; import { TTextAlignLRC } from '../../../types/TTextAlignLRC'; import { TTextAlignLR } from '../../../types/TTextAlignLR'; import { TLeftRightCenterToFlexJustify } from '../../../design/designFunctions/leftRightCenterToFlexJustify'; import { TSpacings } from '../../../types'; type TLabelWrapper = { $align?: TTextAlignLRC | 'space-between'; $justifyContent?: TLeftRightCenterToFlexJustify; $externalStyle: CSSProp; $gap?: TSpacings; theme: TTheme; $disabled?: boolean; }; export declare const LabelWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute, HTMLLabelElement>, TLabelWrapper>> & string; export declare const InputWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute, HTMLDivElement>, { $alignInput?: TTextAlignLR; theme: TTheme; }>> & string; export {};