import React from "react"; interface TabTextLabelProps { children?: React.ReactNode; } declare function TabTextLabel({ children }: TabTextLabelProps): React.JSX.Element; export default TabTextLabel;