import type { Page, Frame } from '@playwright/test'; import type { FormData } from './mocks'; export declare function findAndSelectComponent(page: Page, component: string, subtype: string): Promise<{ storybookFrame: Frame; }>; export declare function findAndSelectSDK(page: Page, component: string, subtype: string): Promise<{ sdkFrame: Frame; storybookFrame: Frame; }>; export declare function fillForm(context: Page | Frame, { cardNumber, billingName, cardExpiry, cardCvc }: FormData): Promise; export declare function submitPaymentForm(context: Page | Frame, customButtonSelector?: string): Promise; export declare function handle3dsFlow(storybookFrame: Frame): Promise; export declare function waitForPaymentCompletion(storybookFrame: Frame): Promise; export declare function clearField(context: Page | Frame, selector: string): Promise;