import { Story } from '@storybook/react'; import { PrimaryTabProps } from './PrimaryTab'; declare const _default: { title: string; component: ({ items, onChange, initialActive, initialCollapsed, absolute, ...other }: PrimaryTabProps) => JSX.Element; argTypes: { initialActive: { control: { type: string; options: (string | number)[]; }; }; initialCollapsed: { control: { type: string; }; }; onChange: { table: { disable: boolean; }; action: string; }; }; }; export default _default; export declare const Demo: Story; export declare const SingleTab: Story;