import React, { ReactNode } from 'react';
interface TabNavProps {
    children: ReactNode;
    className?: string;
    block?: boolean;
    active?: string | null;
    onChange?: (value: string) => void;
}
declare const TabNav: React.FC<TabNavProps> & {
    NavItem: React.FC<NavItemProps>;
};
interface NavItemProps {
    children: ReactNode;
    value?: string | null;
    leadingVisual?: any;
    active?: boolean;
    'aria-label'?: string;
    [key: string]: any;
}
export default TabNav;
export type { TabNavProps, NavItemProps };
//# sourceMappingURL=TabNav.d.ts.map