/** * The SimpleHeader is not public and only used internally by CreateFullPage. * * Component varieties: * - Header with Breadcrumbs * - Header with Title * - Header with Breadcrumbs and Title * * * The component will throw a warning message if neither a title or breadcrumbs are provided * since it requires at least one of them. * */ export function SimpleHeader({ breadcrumbs, className, title, noTrailingSlash, maxVisible, overflowAriaLabel, overflowTooltipAlign, ...rest }: { [x: string]: any; breadcrumbs: any; className: any; title: any; noTrailingSlash?: boolean | undefined; maxVisible: any; overflowAriaLabel: any; overflowTooltipAlign: any; }): React.JSX.Element; export namespace SimpleHeader { namespace propTypes { let breadcrumbs: PropTypes.Requireable<(PropTypes.InferProps<{ /** breadcrumb item key */ key: PropTypes.Validator; /** breadcrumb item label */ label: PropTypes.Validator; /** breadcrumb item link */ href: PropTypes.Requireable; /** breadcrumb item title tooltip */ title: PropTypes.Requireable; /** Provide if this breadcrumb item represents the current page */ isCurrentPage: PropTypes.Requireable; }> | null | undefined)[]>; let className: PropTypes.Requireable; let maxVisible: PropTypes.Requireable; let noTrailingSlash: PropTypes.Requireable; let overflowAriaLabel: PropTypes.Requireable; let overflowTooltipAlign: any; let title: PropTypes.Requireable; } } import React from 'react'; import PropTypes from 'prop-types'; //# sourceMappingURL=SimpleHeader.d.ts.map