declare namespace Ext { export namespace app { export namespace route { export interface RouteConfig { url?: string; action?: string; allowInactive?: boolean; before?: CallableFunction; caseInsensitive?: boolean; conditions?: object; controller?: string; } export class Route extends Ext.Base { public recognize(url?: string): object | boolean; } } } }