import { BasePO } from '@agnos-ui/base-po';
export declare const selectSelectors: {
    rootComponent: string;
};
export declare class SelectPO extends BasePO {
    selectors: {
        rootComponent: string;
    };
    getComponentSelector(): string;
    /**
     * Get the main title locator of the feature page
     */
    get locatorInput(): import("playwright-core").Locator;
    /**
     * Menu container
     */
    get locatorMenu(): import("playwright-core").Locator;
    /**
     * Return the first menu item locator including the text
     */
    get locatorMenuItems(): import("playwright-core").Locator;
    /**
     * Return the first menu item locator including the text
     */
    locatorMenuItem(text: string): import("playwright-core").Locator;
    /**
     * Bages container
     */
    get locatorBadges(): import("playwright-core").Locator;
    /**
     * Return the first badge locator including the text
     */
    locatorBadgeItem(text: string): import("playwright-core").Locator;
    state(): Promise<{
        text: string;
        badges: string[];
        isOpen: boolean;
        list: (string | undefined)[];
        checked: (string | undefined)[];
    }>;
}
