import { FxError, SystemError, UserError, Result } from "@microsoft/teamsfx-api"; export declare type SqlResult = Result; export declare class SqlResultFactory { static readonly source: string; static readonly defaultHelpLink = ""; static readonly defaultIssueLink = ""; 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; } //# sourceMappingURL=results.d.ts.map