import { ToRefs } from 'vue';
import { Control } from '../types';
export declare const CONTROLS_CONTEXT_KEY: unique symbol;
export declare function useControlsProvider(uuid?: string): {
    [key: string]: Control;
};
export declare const dispose: (uuid?: string) => void;
export declare const useControls: (folderNameOrParams: string | {
    [key: string]: any;
}, paramsOrOptions?: {
    [key: string]: any;
} | {
    uuid?: string;
}, options?: {
    uuid?: string;
}) => Control | ToRefs<{
    [key: string]: Control;
}>;
