import { BubbleFlow, type WebhookEvent } from '@bubblelab/bubble-core'; export interface Output { testResults: { operation: string; success: boolean; details?: string; }[]; } export interface TestPayload extends WebhookEvent { testName?: string; } export declare class RampIntegrationTest extends BubbleFlow<'webhook/http'> { handle(_payload: TestPayload): Promise; } //# sourceMappingURL=ramp.integration.flow.d.ts.map