///
import Foundation, { HandledProps } from "@microsoft/fast-components-foundation-react";
import { TabHandledProps, TabProps, TabUnhandledProps } from "./tab.props";
declare class Tab extends Foundation {
static defaultProps: Partial;
static displayName: string;
protected handledProps: HandledProps;
/**
* Renders the component
*/
render(): JSX.Element;
/**
* Generates class names based on props
*/
protected generateClassNames(): string;
}
export default Tab;
export * from "./tab.props";