import React, { FC } from "react"; import { BoxProps } from "@material-ui/core/Box"; export interface HeaderProps extends BoxProps { /** A slot for inserting arbitrary React Nodes or Elements on the left hand side of the header, after the logo. */ left?: React.ReactNode; /** A slot for inserting arbitrary React Nodes or Elements on the right hand side of the header, after the logo. */ right?: React.ReactNode; /** Setting this to `true` replaces the logo with a small, branded M. */ microBranding?: boolean; /** Setting this to `true` replaces the logo with a [`CircularProgress`](https://material-ui.com/api/circular-progress/) component. */ loading?: boolean; } /** * A universal header with branding and slots to add components to the left (after the branding) and right (far right of screen). * Extends [`@material-ui/core/Box`](https://material-ui.com/components/box/). */ export declare const Header: FC; export default Header; //# sourceMappingURL=index.d.ts.map