///
import type { StoryObj } from '@storybook/react';
declare const meta: {
title: string;
component: ({ onClose }: {
onClose?: () => void;
}) => import("react").JSX.Element;
tags: string[];
parameters: {
docs: {
description: {
component: string;
};
};
};
};
export default meta;
type Story = StoryObj;
export declare const Default: Story;