import type { ComponentType } from 'react'; import React from 'react'; import type { ReactFixture } from 'react-cosmos-core'; export declare function createFixtureNode(fixture: ReactFixture, fixtureProps?: Record): React.ReactNode; declare function FixtureElement({ Component, fixtureProps }: { Component: ComponentType; fixtureProps?: Record; }): React.JSX.Element; declare namespace FixtureElement { var cosmosCapture: boolean; } export {};