import React from 'react';
import type { ActionObject } from 'jamis-core';
import type { InputRatingProps } from './types';
declare class RatingControl extends React.Component<InputRatingProps, any> {
    static defaultProps: Partial<InputRatingProps>;
    doAction(action: ActionObject, data: object, throwErrors: boolean): void;
    handleChange(value: any): Promise<void>;
    pickClassStyle: import("jamis-core").PickClassStyleFn;
    renderSlotBody: import("..").RenderSlotBodyType;
    render(): JSX.Element;
}
export declare class RatingControlRenderer extends RatingControl {
}
export {};
