import { type TitleProps } from '../../model/HeadlineType'; import { type VNode } from '../../model/VNode'; import { type RateProps } from './Rate'; interface RenderRateProps extends RateProps, TitleProps { children?: VNode; } export declare const renderRate: ({ title, rate, unit, fractionDigits, color, children, ...rest }: RenderRateProps) => any; export {};