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