import React from 'react'; import { FixtureId } from 'react-cosmos-shared2/renderer'; import { CosmosConfig } from './config'; declare type Args = { cosmosConfig: CosmosConfig; }; declare type RenderableFixture = { fixtureId: FixtureId; getElement: () => React.ReactElement; }; export declare function getFixtures({ cosmosConfig }: Args): Promise; export {};