import { Ref } from "vue"; import GroupCommand from "../models/groupCommand"; export default function keysController(onModalChange: Function, modalKey: string, customerGroupCommands: Ref, previousCustomerGroupCommand: Function, nextCustomerGroupCommand: Function, onEnterKey: Function): { keys: Ref; addKey: (key: string) => void; deleteKey: (key: string) => void; onKeyDownInput: (this: Window, e: KeyboardEvent) => void; onKeyUpInput: (this: Window, e: KeyboardEvent) => void; isCustomerKey: (key: string) => boolean; isCloseKey: () => boolean; isArrowDown: Ref; isArrowUp: Ref; };