import { ReactNode } from "react"

export interface TabbedNavigationProps {
  children: ReactNode
}
declare const TabbedNavigation: React.FC<TabbedNavigationProps>

export default TabbedNavigation
