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