import { StoryObj } from '@storybook/react';
import { TextGradient } from '..';
declare const meta: {
    component: typeof TextGradient;
    title: string;
    parameters: {
        docs: {
            description: {
                component: string;
            };
        };
    };
    argTypes: {
        colors: {
            description: string;
            control: {
                type: "object";
            };
        };
        orientation: {
            description: string;
            control: {
                type: "select";
            };
        };
        position: {
            description: string;
            control: {
                type: "select";
            };
        };
        degree: {
            description: string;
            control: {
                type: "number";
            };
        };
        children: {
            description: string;
            control: {
                type: "object";
            };
        };
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
