interface ITab {
    Label: string;
    Id: string;
}
interface IProps {
    Tabs: ITab[];
    SetTab: (t: string) => void;
    CurrentTab: string;
}
/**
 * Component for rendering a dropdown tab selector.
 * @param props - configures and manages tab selector.
 */
declare const TabSelector: (props: IProps) => JSX.Element;
export default TabSelector;
