export declare function useController(): {
    press(key: string): void;
    release(key: string): void;
    releaseAll(): void;
    getPressed(): string[];
    isPressed(key: string): boolean;
};
