export default Page; /** * Renders page's content, if `isLoading` is false otherwise shows loading indicator. * * `breadcrumbs`, `title` and `content` can be lazy properties, that is parameterless functions which return actual value. * `children` property has priority over `content` property. */ export type Breadcrumb = { name?: string; icon?: string | any; link?: string; }; /** * Renders page's content, if `isLoading` is false otherwise shows loading indicator. * * `breadcrumbs`, `title` and `content` can be lazy properties, that is parameterless functions which return actual value. * `children` property has priority over `content` property. * * @typedef {{ name?: string, icon?: string|Object, link?: string}} Breadcrumb * */ declare function Page({ dataTestId, title, accessories, accessoryPosition, className, children, content, isLoading, isPolling, spinnerColor, navLayoutProps, feedbackBlock, navMenu, id, }: { dataTestId?: string | undefined; title: any; accessories: any; accessoryPosition?: string | undefined; className: any; children: any; content: any; isLoading?: boolean | undefined; isPolling?: boolean | undefined; spinnerColor?: string | undefined; navLayoutProps?: {} | undefined; feedbackBlock?: React.JSX.Element | undefined; navMenu: any; id: any; }): React.JSX.Element; declare namespace Page { namespace propTypes { let breadcrumbs: any; let isLoading: any; let isFetching: any; let spinnerColor: any; let title: any; let accessories: any; let accessoryPosition: any; let content: any; let id: any; let navLayoutProps: any; } } import React from "react";