export interface CodeDecoratorProps { value: string; } /** * CodeDecorator A styled inline code element for highlighting technical terms, commands, and snippets within text * @param {string} value - The value to display in the code decorator */ export declare function CodeDecorator({ value }: CodeDecoratorProps): import("react/jsx-runtime").JSX.Element; export default CodeDecorator;