import { SetStateAction } from 'react'; type Options = { value?: T; defaultValue: T; onChange?: (v: T) => void; }; export declare function usePropsValue(options: Options): readonly [T, (this: any, v: SetStateAction, forceTrigger?: any) => void]; export {};