import { StoryObj } from '@storybook/html';
import { CodeBlockProps } from './CodeBlock';
declare const meta: {
title: string;
render: (args: CodeBlockProps) => DocumentFragment;
argTypes: {
value: {
control: string;
};
lang: {
control: string;
options: string[];
};
theme: {
control: string;
options: string[];
};
onCopy: {
action: string;
};
};
};
export default meta;
type Story = StoryObj;
export declare const Normal: Story;