import * as prop_types from 'prop-types'; import * as styled_components from 'styled-components'; declare const StyledTextContainer: styled_components.StyledComponent; declare const StyledTag: styled_components.StyledComponent<{ ({ children, variant, small, ellipsis, ...rest }: { [x: string]: any; children: any; variant?: string | undefined; small?: boolean | undefined; ellipsis?: boolean | undefined; }): JSX.Element; propTypes: { variant: prop_types.Requireable; children: prop_types.Validator; small: prop_types.Requireable; ellipsis: prop_types.Requireable; }; }, any, {}, never>; declare const StyledText: styled_components.StyledComponent; declare const StyledItem: styled_components.StyledComponent; export { StyledItem, StyledTag, StyledText, StyledTextContainer };