/** * Returns a function that calls the provided remover functions. * * @param removers List of removers. * @returns Function that calls the provided removers. */ export declare function off(...removers: readonly (() => void)[]): () => void;