import type { FieldIndeterminateProps } from './Indeterminate';
export default function useDependencePaths(dependencePaths: FieldIndeterminateProps['dependencePaths'], propagateIndeterminateState: FieldIndeterminateProps['propagateIndeterminateState']): {
    setAllStates: (checked: boolean) => void;
    indeterminate: boolean;
    internalValue: boolean;
    ariaControlsIds: string;
};
