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