import { StoryObj } from '@storybook/react'; import { default as FancyInfoCard } from '../FancyInfoCard'; declare const meta: { component: typeof FancyInfoCard; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { themeType: { description: string; control: { type: "select"; }; }; layer: { description: string; control: { type: "range"; min: number; max: number; step: number; }; }; outlined: { description: string; control: { type: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; outlinedBackgroundStrength: { description: string; control: { type: "range"; min: number; max: number; step: number; }; table: { defaultValue: { summary: string; }; }; }; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;