import React, { FC } from "react";
export interface IRibbonTabProps {
    active?: boolean;
    className?: string;
    mode?: 'static' | 'default';
    label?: string;
    children?: React.ReactNode;
}
declare const RibbonTab: FC<IRibbonTabProps>;
export default RibbonTab;
