import { Meta, StoryObj } from '@storybook/web-components';
interface ModalArgs {
    backdrop: 'default' | 'static';
    'custom-class'?: string;
    fullscreen: boolean;
    'modal-id'?: string;
    position: 'bottom' | 'center' | 'top';
    'show-close': boolean;
    'show-fullscreen-toggle': boolean;
}
declare const meta: Meta<ModalArgs>;
export default meta;
type Story = StoryObj<ModalArgs>;
export declare const Default: Story;
export declare const CustomWidthAndHeight: Story;
export declare const ShadowDomParent: Story;
export declare const Migration: Story;
