import { Meta, StoryObj } from '@storybook/web-components';
interface PanelArgs {
    'custom-class'?: string;
    width?: string;
    height?: string;
    floating?: boolean;
}
declare const meta: Meta<PanelArgs>;
export default meta;
type Story = StoryObj<PanelArgs>;
export declare const Default: Story;
export declare const Floating: Story;
export declare const BodyOnly: Story;
export declare const ShadowDomParent: Story;
