import React, { FC } from "react"; import { BoxProps } from "@material-ui/core/Box"; export interface TitleProps extends BoxProps { primary: string | React.ReactNode; secondary?: string | React.ReactNode; loading?: boolean; } /** * Easily create nice consistent page titles without worrying about which variants, i.e. h2, h3, to use. * Extends [`@material-ui/core/Box`](https://material-ui.com/components/box/) for control over margins, etc. */ export declare const Title: FC; export default Title; //# sourceMappingURL=index.d.ts.map