import React from 'react'; import type { InputsFixtureState } from 'react-cosmos-core'; import type { SetInputsFixtureState } from './shared.js'; type Props = { fixtureState: InputsFixtureState | undefined; actionOrder: string[]; onFixtureStateChange: SetInputsFixtureState; }; export declare function InputsPanel({ fixtureState, actionOrder, onFixtureStateChange, }: Props): React.JSX.Element | null; export {};