import { FxError, Result, SystemError, UserError } from "@microsoft/teamsfx-api"; export declare type SimpleAuthResult = Result; export declare class ResultFactory { static readonly source: string; static UserError(name: string, message: string, innerError?: any, stack?: string, helpLink?: string): UserError; static SystemError(name: string, message: string, innerError?: any, stack?: string, issueLink?: string): SystemError; static Success(result?: any): SimpleAuthResult; } //# sourceMappingURL=result.d.ts.map