import { RefType } from "@hydrophobefireman/ui-lib"; export declare function applyRef(ref: any, value: any): any; type RefObj = ((val: R) => void) | RefType; export declare function useSyncedRefs(externalRef?: RefObj, internalRef?: RefObj): (value: R) => void; export {};