import { Ref } from "../types";
export declare function createRef(defaultValue?: any): Ref;
export declare function forwardRef(func: (props: any, ref: Ref) => any): (props: any, ref: Ref) => any;
