import React from 'react';
import type { CnTabItemProps, CnTabProps } from './types';
import './tab.scss';
export declare const CnTab: {
    (props: CnTabProps): React.JSX.Element;
    displayName: string;
    defaultProps: {
        type: string;
        tabAlign: string;
    };
    Item: React.ForwardRefExoticComponent<CnTabItemProps & React.RefAttributes<HTMLDivElement>>;
};
