import type { ValueProps } from '../types';
export type UseValueProps<Value> = ValueProps<Value>;
export default function useValueProps<Value = unknown, Props = unknown>(localProps: Props & ValueProps<Value>): Props & ValueProps<Value>;
