import { Meta, StoryObj } from '@storybook/web-components';
import { DaisySize } from '../types';
interface IconArgs {
    'custom-class'?: string;
    decorative: boolean;
    name: string;
    size: DaisySize;
}
declare const meta: Meta<IconArgs>;
export default meta;
type Story = StoryObj<IconArgs>;
export declare const Default: Story;
export declare const CustomColor: Story;
export declare const Migration: Story;
