import React, { HTMLAttributes } from "react";
import { AppBarColorInherit } from "./useInheritContext";
export interface AppBarTitleProps extends HTMLAttributes<HTMLHeadingElement>, AppBarColorInherit {
    /**
     * Boolean if the title should be placed at the `$rmd-app-bar-title-keyline`.
     */
    keyline?: boolean;
    /**
     * Boolean if the title should not automatically try to wrap the content and
     * span two lines if it is too big. This will automatically add trailing
     * ellipsis for the text overflow as well.
     */
    noWrap?: boolean;
}
/**
 * This component is used to create a title for your application. If your app is
 * not using the `AppBarNav` component, you can enable the `keyline` prop to
 * ensure that your title aligns with the keyline of your navigation element.
 */
export declare const AppBarTitle: React.ForwardRefExoticComponent<AppBarTitleProps & React.RefAttributes<HTMLHeadingElement>>;
