import * as Rx from "rxjs"; import { Dispatch } from "../gateway/dispatch"; import { Invite, InviteMetadatum, Snowflake } from "../types"; import * as Resources from "./resources"; export type PartialInvite = Omit & { channel_id: Snowflake; }; export declare const watch$: (fromDispatch: Dispatch, rest: import("../types").Endpoints>) => Rx.Observable>;