import { Controller } from "./controller";
import { ControllerOptions } from "./ControllerOptions";
/**
 * Gamepad - Button Controller
 */
export declare class Button extends Controller {
    constructor(options: ControllerOptions);
    onStart(): void;
    onEnd(): void;
}
