import type { ContainerDirectiveTransformer } from './types.ts'; export interface CodeGroup { code: string; label?: string | null | undefined; lang?: string | null | undefined; } export interface CodeGroupDirectiveOptions { component?: string; } export declare const codeGroupDirective: ContainerDirectiveTransformer;