import { type SnapshotRegistrationParams } from '../e2e/controller.ts'; import type { SkipItem } from '../isomorphic/types.ts'; interface HappoScreenshotConfig { autoApplyPseudoStateAttributes: boolean; skip: Array; } interface HappoTask { isRegisteredCorrectly: boolean; register(on: Cypress.PluginEvents): void; handleAfterSpec(spec: Cypress.Spec, results: CypressCommandLine.RunResult): Promise; happoRegisterSnapshot(snapshot: SnapshotRegistrationParams): Promise; happoRegisterBase64Image(params: { base64Chunk: string; src: string; isFirst: boolean; isLast: boolean; }): Promise; happoGetIntegrationConfig(): HappoScreenshotConfig; handleBeforeSpec(): Promise; } declare const task: HappoTask; export default task; //# sourceMappingURL=task.d.ts.map