export declare function getByTestIdSelector(testIdAttributeName: string, testId: string | RegExp): string; export declare function getByLabelSelector(text: string | RegExp, options?: { exact?: boolean; }): string; export declare function getByAltTextSelector(text: string | RegExp, options?: { exact?: boolean; }): string; export declare function getByTitleSelector(text: string | RegExp, options?: { exact?: boolean; }): string; export declare function getByPlaceholderSelector(text: string | RegExp, options?: { exact?: boolean; }): string; export declare function getByTextSelector(text: string | RegExp, options?: { exact?: boolean; }): string; export interface GetByRoleOptions { checked?: boolean; disabled?: boolean; selected?: boolean; expanded?: boolean; includeHidden?: boolean; level?: number; name?: string | RegExp; description?: string | RegExp; pressed?: boolean; exact?: boolean; } export declare function getByRoleSelector(role: string, options?: GetByRoleOptions): string; //# sourceMappingURL=selector-builders.d.ts.map