import React from 'react'; import { DefaultProps, FlowindColor, Selectors } from '../../../styles'; import useStyles from './tab.styles'; export type TabStylesNames = Selectors; export interface TabProps extends DefaultProps, React.ComponentPropsWithoutRef<'button'> { /** Value that is used to connect Tab with associated panel */ value: string; /** Tab label */ children?: React.ReactNode; /** Section of content displayed after label */ rightSection?: React.ReactNode; /** Section of content displayed before label */ icon?: React.ReactNode; /** Key of theme.colors */ color?: FlowindColor; } export declare const Tab: React.ForwardRefExoticComponent>;