import { Page } from '@playwright/test'; interface TestExploreCidOptions { page: Page; cid: string; type: string; humanReadableCID?: string; fillOutForm?: boolean; } /** * Fills out the explore form (optional), waits for CID of given type to be loaded, and checks if CID details are correct. */ export declare function testExploredCid({ cid, type, humanReadableCID, page, fillOutForm }: TestExploreCidOptions): Promise; export {};