import IMailThread from "../mailThread/iMailThread";
import IMailApp from "./iMailApp";
import ILabel from "../label/iLabel";
export default class MailAppMock implements IMailApp {
    mailThreads: Array<IMailThread>;
    label: ILabel;
    search(q: string): Array<IMailThread>;
    getUserLabelByName(name: string): ILabel;
    createLabel(name: string): ILabel;
}
