import type { InternalHighlightProps, InternalHighlightClassNames } from './InternalHighlight'; export declare type SnippetClassNames = InternalHighlightClassNames; export declare type SnippetProps = Omit & { classNames?: Partial; }; export declare function Snippet({ classNames, ...props }: SnippetProps): JSX.Element;