import React from 'react'; declare type ColorType = 'default' | 'theme'; declare const TNavBar: ({ title, hasBack, color, right }: { title: string; hasBack?: boolean | undefined; color?: ColorType | undefined; right?: React.ReactNode; }) => JSX.Element; export default TNavBar;