import { InputActionTypeEnum } from './InputActionTypeEnum';
/** Action on input */
export interface InputAction {
    /** Indicates if action is allowed */
    isAllowed: boolean;
    /** Action type */
    type: InputActionTypeEnum;
}
//# sourceMappingURL=InputAction.d.ts.map