import { StoryObj } from '@storybook/react';
import { default as YearSelector } from '../YearSelector';
declare const meta: {
    component: typeof YearSelector;
    title: string;
    parameters: {
        docs: {
            description: {
                component: string;
            };
        };
    };
    argTypes: {
        themeType: {
            description: string;
            control: {
                type: "select";
            };
            options: (string | undefined)[];
            table: {
                defaultValue: {
                    summary: string;
                };
            };
        };
        themeTypeSecondary: {
            description: string;
            control: {
                type: "select";
            };
            options: string[];
            table: {
                defaultValue: {
                    summary: string;
                };
            };
        };
        layer: {
            description: string;
            control: {
                type: "range";
                min: number;
                max: number;
            };
            table: {
                defaultValue: {
                    summary: string;
                };
            };
        };
        selectedYear: {
            description: string;
            table: {
                defaultValue: {
                    summary: string;
                };
            };
            control: {
                type: "number";
            };
        };
        sizeC: {
            description: string;
            control: {
                type: "select";
            };
        };
        borderRadius: {
            description: string;
            control: {
                type: "select";
            };
        };
        ariaTextLeftArrow: {
            description: string;
            control: {
                type: "text";
            };
            table: {
                defaultValue: {
                    summary: string;
                };
            };
        };
        ariaTextRightArrow: {
            description: string;
            control: {
                type: "text";
            };
            table: {
                defaultValue: {
                    summary: string;
                };
            };
        };
        yearChangeHandler: {
            description: string;
            control: {
                type: "object";
            };
        };
        maxYear: {
            description: string;
            control: {
                type: "number";
            };
        };
        minYear: {
            description: string;
            control: {
                type: "number";
            };
        };
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
