import { MutableRefObject } from "react";
import { Group } from "three";
declare type BlinkManager = {
    blinkRef: MutableRefObject<Group | null>;
    reset: () => void;
};
export declare const useCaretBlink: (rate?: number) => BlinkManager;
export {};
