import React from 'react'; import { LoadingOverlayProps } from '..'; import { StoryObj } from '@storybook/react-vite'; declare const meta: { title: string; args: { zIndex: number; }; render: ({ ...args }: Omit) => React.JSX.Element; }; export default meta; type Story = StoryObj; export declare const Standard: Story; export declare const CustomOverlay: { args: { overlay: string; }; };