import type { ComponentPropsWithRef, FC, ReactElement } from 'react'; export interface InlineCodeSnippetProps extends Omit, 'children'> { /** The code content to display */ code: string; /** Size variant */ size?: 'sm' | 'md' | 'lg' | 'inherit'; /** Render as the React element passed via `children` instead of the default ``. The `code` prop becomes the cloned element's content. */ asChild?: boolean; /** Enable click to copy functionality (default: true) */ copyable?: boolean; /** Used only when `asChild` is true. Must be a single React element; the `code` prop is rendered as its children. */ children?: ReactElement; } /** * InlineCodeSnippet - A simple inline code display component with optional copy functionality. * * @example * ```tsx *

* Run to install dependencies. *

* ``` */ export declare const InlineCodeSnippet: FC;