import { ComponentProps, FC } from 'react'; import { Alignment } from './types/alignment'; import { Size } from './types/size'; import { Style } from './types/style'; type Props = { alignment?: Alignment; size?: Size; style?: Style; fullwidth?: boolean; }; export declare const Tabs: FC, keyof Props> & Props>; export {};