export type TSelectorType = "css" | "text" | "input" | "xpath" | "testId"; export type TSelector = { selectorType?: TSelectorType; selector: string; index?: number; target?: string; }; export declare function convertToCss(selector: TSelector): string | undefined; export declare function createTestidSelector(testId: string): string; export declare function getRadioSelector(value: string): string;