import React from 'react'; import type { FixtureId } from 'react-cosmos-core'; import type { GetFixtureState, SetFixtureStateByName } from '../plugins/RendererCore/spec.js'; export type ControlPanelRowSlotProps = { fixtureId: FixtureId; getFixtureState: GetFixtureState; setFixtureState: SetFixtureStateByName; }; type Props = { slotProps: ControlPanelRowSlotProps; plugOrder: string[]; }; export declare function ControlPanelRowSlot({ slotProps, plugOrder }: Props): React.JSX.Element; export {};