import type { ConfigWithDefaults } from '../config/index.ts'; import type { EnvironmentResult } from '../environment/index.ts'; import type { Logger } from '../isomorphic/types.ts'; interface CreateAsyncComparisonResult { id: number; statusImageUrl: string; compareUrl: string; } /** * Create an async comparison between two SHAs * * @see https://happo.io/docs/api#compareReports */ export default function createAsyncComparison(config: ConfigWithDefaults, { beforeSha, afterSha, link, message, authorEmail, notify, fallbackShas, }: EnvironmentResult, logger: Logger): Promise; export {}; //# sourceMappingURL=createAsyncComparison.d.ts.map