/// export type LinkGen = (event?: any, type?: any, path?: any, state?: any, isNewWindow?: boolean) => void; export declare enum ExternalNotificationType { Success = "success", Warinng = "warning", Error = "error" } export interface ExternalNotification { id?: number; header: string; body?: string; bodyComponent?: JSX.Element; messageCode?: string; theme: ExternalNotificationType; timer?: number; } export declare const NavigationContext: import("react").Context<{ linkGen: LinkGen; returnData?: any; pushExternalNotification?: ((message: ExternalNotification) => void) | undefined; }>;