import React from 'react'; import type { LegacyStylableProps } from '~/types/component'; import type { BodyTextProps } from './types'; export declare const BodyText: ({ as, size, weight, color, align, ellipsis, className, style, children, id, "data-tag": dataTag, ...props }: BodyTextProps) => React.JSX.Element; /** @deprecated use `BodyText` with `className` and css modules instead. */ export declare const BodyTextWithCss: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute & LegacyStylableProps>> & string & Omit<({ as, size, weight, color, align, ellipsis, className, style, children, id, "data-tag": dataTag, ...props }: BodyTextProps) => React.JSX.Element, keyof React.Component>;