import { BasePO } from '@agnos-ui/base-po';
export declare const ratingSelectors: {
    rootComponent: string;
    star: string;
};
export declare class RatingPO extends BasePO {
    selectors: {
        rootComponent: string;
        star: string;
    };
    getComponentSelector(): string;
    /**
     * Get the main title locator of the feature page
     */
    locatorStar(index: number): import("playwright-core").Locator;
    state(): Promise<{
        rootClasses: string[];
        value: string | null;
        min: string | null;
        max: string | null;
        text: string | null;
        disabled: string | null;
        readonly: string | null;
        stars: string[];
        classes: string[][];
    }>;
}
