import type { Resolver } from './module-resolver'; import type { VirtualContentResult } from './virtual-content'; export interface TestSupportStylesResponse { type: 'test-support-css'; specifier: string; } export declare function renderTestSupportStyles(response: TestSupportStylesResponse, resolver: Resolver): VirtualContentResult;