/** @typedef {typeof __propDef.props}  RatingProps */
/** @typedef {typeof __propDef.events}  RatingEvents */
/** @typedef {typeof __propDef.slots}  RatingSlots */
export default class Rating extends SvelteComponentTyped<{
    class: any;
    style: any;
}, {
    mount: CustomEvent<any>;
} & {
    [evt: string]: CustomEvent<any>;
}, {
    default: {};
}> {
}
export type RatingProps = typeof __propDef.props;
export type RatingEvents = typeof __propDef.events;
export type RatingSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        class: any;
        style: any;
    };
    events: {
        mount: CustomEvent<any>;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export {};
