import * as React from 'react'; export declare type Variation = 'positive' | 'negative' | 'strong' | 'subdued' | 'code'; export interface Props { /** Give text additional visual meaning */ variation?: Variation; /** The content that should get the intended styling */ children?: React.ReactNode; } export default function TextStyle({ variation, children }: Props): JSX.Element;