export declare class Sender<T> {
    send: (...msgs: NonNullable<T>[]) => boolean;
    constructor(send: (msg: NonNullable<T>) => boolean);
}
