import * as React from 'react';
import { JobStatusType } from '@lml/cosmo-ts-data';
export interface KeyboardShortcutsProps {
    jobStatus: JobStatusType | null;
    notificationInfo: (a: string, b: boolean) => any;
    deallocateActiveJob: () => any;
    onKeyEnterPress: () => any;
    onKeyUpPress: () => any;
    onKeyDownPress: () => any;
    selectTrayToLeft: () => any;
    selectTrayToRight: () => any;
    showAllocationModal: () => any;
    redirect: (path: string) => any;
}
export declare const KeyboardShortcuts: React.ComponentClass<{}>;
