import { FC, Ref } from 'react'; import { TextProps, TextSize } from '../Text'; export interface CodeProps extends TextProps { /** * Defines the font size of the code element. * Inherits from the typography system’s `TextSize` type. */ size?: TextSize; /** * Ref forwarded to the native `` HTML element. * Enables direct access for focus, measurement, or custom logic. */ ref?: Ref; } /** Code is a UI component used to display snippets of code in a readable, monospaced font. */ export declare const Code: FC;