import * as React from 'react'; import { WithStyles } from '../../core/withStyles'; import styles from './ActionBarTitle.styles'; export interface ActionBarTitleProps extends WithStyles { /** The title of the title bar */ title: string; /** Optional subtitle of the title bar */ subtitle?: string; } export declare const ActionBarTitle: React.SFC; declare const _default: React.ComponentType & import("@material-ui/core/styles/withStyles").StyledComponentProps>; export default _default;