import type { Meta, StoryObj } from '@storybook/react';
import React from 'react';
import { DemoProps } from '../../components/demo/Demo';
declare const StoryComponent: (props: DemoProps) => React.JSX.Element;
declare const meta: Meta<typeof StoryComponent>;
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Light: Story;
export declare const Dark: Story;
export declare const ScaledWithLargerPageSize: Story;
export declare const PastelCustomTheme: Story;
