import React, { ReactNode } from "react"; import { BoxProps } from "../Box"; declare type AppbarTabProps = { children: ReactNode; as?: any; active?: boolean; }; export declare const AppbarTabs: (props: BoxProps) => JSX.Element; export declare const AppbarTab: React.ForwardRefExoticComponent & React.RefAttributes>; export {};