export declare const TAB_SIZE: readonly ["s", "m"];
export type TabSize = (typeof TAB_SIZE)[number];
export type TabRoute = {
    href?: string;
    onClick?: () => void;
    title: React.ReactNode;
    render?: (tabLink: React.ReactNode) => React.ReactNode;
    testId?: string;
    isActive?: boolean;
};
