import React from 'react'; import { KubedNumberSize } from '../theme'; export interface SnippetProps extends React.ComponentPropsWithoutRef<'div'> { /** Symbol of snippet, default value is $ */ symbol?: string; /** Width of snippet */ width?: number; /** Content of snippet */ content?: string; /** Border-radius from theme or number to set border-radius in px */ radius?: KubedNumberSize; /** The value to be written to the clipboard */ valueToCopy?: any; } export declare function Snippet({ symbol, width, content, radius, valueToCopy, children, ...others }: SnippetProps): React.JSX.Element; export declare namespace Snippet { var displayName: string; } //# sourceMappingURL=Snippet.d.ts.map