import React from 'react'; import type { FixtureId } from 'react-cosmos-core'; import type { GetFixtureState, SetFixtureStateByName } from '../RendererCore/spec.js'; type Props = { fixtureId: FixtureId; getFixtureState: GetFixtureState; setFixtureState: SetFixtureStateByName; rowOrder: string[]; onClose: () => unknown; }; export declare const ControlPanel: React.NamedExoticComponent; export {};