import { ObjectForExtending } from '../types'; import { RowInstrumentsType } from '../feature-row-instruments/types'; export declare const useRowInstruments: (rowInstrumentsConfig?: { getRowDropdownConfig?: RowInstrumentsType; defaultOpened?: boolean; openedState?: [boolean, React.Dispatch>]; }) => { showRowInstruments: boolean; setShowRowInstruments: import('react').Dispatch>; getRowDropdownConfig: RowInstrumentsType | null; };