import { IViewProps } from '../View'; export interface ITitleBarProps extends IViewProps { readonly onClick?: () => void; readonly color?: string; } declare const TitleBar: ({ children, color, ...props }: ITitleBarProps) => JSX.Element; export default TitleBar;