import React from 'react';
import type { Meta, StoryObj } from '@storybook/react';
import CheeseburgerMenu from './index';
declare const meta: Meta<typeof MenuContainer>;
export default meta;
type Story = StoryObj<typeof MenuContainer>;
export declare const Normal: Story;
export declare const WithSkew: Story;
type Props = Omit<React.ComponentProps<typeof CheeseburgerMenu>, 'isOpen' | 'closeCallback' | 'children'>;
declare function MenuContainer(props: Props): React.JSX.Element;
