import { Props as IconProps } from '../Icon'; export interface Context { location: string; onNavigationDismiss?(): void; } export interface ItemType { label: string; url: string; icon?: IconProps['source']; } export interface SectionType { title?: string; fill?: boolean; items?: ItemType[]; } export declare const contextTypes: { location: any; onNavigationDismiss: any; };