import type { FC } from 'react';
export declare const DEFAULT_BLINKING_SPEED = 500;
export declare const DEFAULT_CURSOR_SYMBOL = "|";
export interface CursorProps {
    cursorSymbol?: string;
    delay?: number;
}
export declare const Cursor: FC<CursorProps>;
