export declare module IAccessibility {
    interface IShortcut {
        category: string;
        title: string;
        commands: Array<string>;
    }
    interface IAccessibilityContext {
        shortcut: IShortcut;
        currentTarget: any;
    }
}
