import { Message } from './Message';
export declare class Inbox {
    domain: string;
    to: string;
    msgs: Array<Message>;
}
