export default ShortcutManager;
/**
 * ShortcutManager matches shortcuts to the current route to redirect to a new
 * one
 *
 * @extends {React}
 */
declare class ShortcutManager {
    static displayName: string;
    static propTypes: any;
    constructor(props: any);
    redirect(event: any, path: any): void;
    handleKeyPress(event: any): void;
    handleRegexMatching(event: any, redirectMap: any, pathname: any): void;
    componentDidMount(): void;
    componentWillUnmount(): void;
    render(): null;
}
