///
export type DRefExtra = (() => T | null) | string;
export declare function useRefExtra(refExtra?: string, update?: boolean): React.RefObject;
export declare function useRefExtra(refExtra?: () => T | null, update?: boolean): React.RefObject;
export declare function useRefExtra(refExtra?: DRefExtra, update?: boolean): React.RefObject;