import type { FC, ReactNode } from 'react'; export type CodeSnippetTabsProps = { value?: string; defaultValue?: string; onValueChange?: (value: string) => void; children: ReactNode; }; export declare const CodeSnippetTabs: FC;