/// <reference types="react" />
import { CosmosConfig } from './config/shared';
export declare type FixtureApi = {
    absoluteFilePath: string;
    fileName: string;
    getElement: () => React.ReactElement<any>;
    name: string | null;
    parents: string[];
    playgroundUrl: string;
    relativeFilePath: string;
    rendererUrl: string;
    treePath: string[];
};
export declare function getFixtures2(cosmosConfig: CosmosConfig): FixtureApi[];
