export class InputBinding {
    /**
     *
     * @param {string} path
     * @param {function} listener
     * @param {boolean} [exclusive=false]
     */
    constructor({ path, listener, exclusive }: string);
    /**
     *
     * @type {string}
     */
    path: string;
    /**
     *
     * @type {Function}
     */
    listener: Function;
    /**
     * @deprecated don't use
     * @type {boolean}
     */
    exclusive: boolean;
}
//# sourceMappingURL=InputBinding.d.ts.map