import { ComponentProps, default as React } from 'react'; import { SafeOmit } from '../../../.deps/utils/src'; import { PublicTypographyProps } from '../getTypographyProps'; /** @inheritdoc */ export interface StrongProps extends SafeOmit, 'className' | 'style'>, PublicTypographyProps { } export declare function Strong({ appearance, ...rest }: StrongProps): React.JSX.Element;