import { StoryObj } from '@storybook/html';
import { KbdProps } from './Kbd';
declare const meta: {
    title: string;
    render: (args: KbdProps) => DocumentFragment;
    argTypes: {
        shortcut: {
            control: string;
        };
        mini: {
            control: string;
        };
    };
};
export default meta;
type Story = StoryObj<KbdProps>;
export declare const Normal: Story;
