export interface CodeBlockOptions { code?: string; copyHint?: string | boolean; copyButtonLabel?: string; classes?: string[]; languageClass?: string; } type AttrValue = string | number | boolean | string[] | null | undefined; type CodeBlockRenderer = ((options?: CodeBlockOptions) => string) & { outerHTML: (options?: CodeBlockOptions, attrs?: Record) => string; }; export declare const CodeBlock: CodeBlockRenderer; export {}; //# sourceMappingURL=html.d.ts.map