import { StoryObj } from '@storybook/html';
type ContextMenuTemplateProps = {
    onClick?: (event: MouseEvent) => void;
};
declare const meta: {
    title: string;
    render: (args: ContextMenuTemplateProps) => DocumentFragment;
    argTypes: {
        onClick: {
            action: string;
        };
    };
};
export default meta;
type Story = StoryObj<ContextMenuTemplateProps>;
export declare const Normal: Story;
