import { StoryObj } from '@storybook/react';
import { default as FancyActionWrapper } from '../FancyActionWrapper';
declare const meta: {
    title: string;
    component: typeof FancyActionWrapper;
    parameters: {
        layout: string;
    };
    argTypes: {
        WrapperComponent: {
            description: string;
            control: {
                type: "object";
            };
        };
        as: {
            description: string;
            options: string[];
            control: {
                type: "select";
            };
            table: {
                defaultValue: {
                    summary: string;
                };
            };
        };
        children: {
            description: string;
            control: {
                type: "object";
            };
        };
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const WrapperWithButton: Story;
export declare const WrapperWithCustom: Story;
