import { RatingProps } from 'primereact/rating';

export interface RatingTogetherProps extends Omit<RatingProps, 'value' | 'onChange' | 'readOnly'> {
    rtKey: string;
}
export default function RatingTogether({ rtKey, ...props }: RatingTogetherProps): import("react/jsx-runtime").JSX.Element;
