import { default as React } from 'react';
import { Token } from './tokenizer';
type ReactFuriganaProps = {
    text: string;
    separator?: string;
    leftBracket?: string;
    rightBracket?: string;
    render?: (token: Token) => React.ReactNode;
};
export declare function ReactFurigana(props: ReactFuriganaProps): import("react/jsx-runtime").JSX.Element;
export {};
