import { StoryObj } from "@storybook/react";
declare const meta: {
    title: string;
    component: {
        ({ defaultOpened, id: propId, ...props }: import("./Dialog.types").Props): import("react/jsx-runtime").JSX.Element;
        displayName: string;
    };
    args: {
        title: string;
        children: import("react/jsx-runtime").JSX.Element;
        opened: true;
    };
    argTypes: {
        onClose: {
            action: string;
        };
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Default: Story;
export declare const NoFocusTrap: Story;
