import { Application } from '@gpa-gemstone/application-typings'; import * as React from 'react'; export interface IContext { homePath: string; userRoles: Application.Types.SecurityRoleName[]; collapsed: boolean; useSearchMatch: boolean; activeSection: string; setActiveSection: (guid: string) => void; setActivePageLabel: (label: string | null) => void; } export declare const Context: React.Context; export declare const SectionContext: React.Context;