import type { DataListBaseOptionsStore } from '../useDataListBaseOptionsStore';
import type { DataListBaseValueControl } from '../useDataListBaseValue';
import type { DataListBaseControlsControl } from './types';
export declare const useDataListBaseControls: ({ active, valueControl, optionsStore, }: {
    active: boolean;
    valueControl: DataListBaseValueControl<boolean>;
    optionsStore: DataListBaseOptionsStore;
}) => DataListBaseControlsControl;
