import { type ElementType } from 'react'; import type { PageHeaderProps } from '../types'; type UseLogicParams = PageHeaderProps; export declare const useLogic: ({ shouldUpdateDocumentTitle, title, breadcrumbs, actions, htmlTitle, }: UseLogicParams) => { isShowMobileActions: boolean | undefined; isNewLayout: boolean; isLoading: boolean | undefined; mobileTitleActions: import("react").ReactNode; }; export {};