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;
}
export declare const Context: React.Context<IContext>;
export declare const SectionContext: React.Context<string>;
