import { Shortcut } from '../shortcut/Shortcut';
import { I18n } from '../i18n/I18n';

interface IRegisterPayload {
    shortcut: Shortcut;
    i18n: I18n;
}
export declare class Register {
    constructor(payload: IRegisterPayload);
}
export {};
