export interface OffOptions {
    name: string;
    key?: string;
}
/**
 * 事件取消。
 */
export declare const off: (options: OffOptions) => void;
