export declare const AnchorStrategy: { readonly TESTID: "testid"; readonly COMPONENT: "component"; readonly ROLE: "role"; readonly POSITION: "position"; }; export type AnchorStrategy = (typeof AnchorStrategy)[keyof typeof AnchorStrategy]; export interface AnchorInput { testid?: string; component?: string; source?: { file: string; line: number; }; role?: string; name?: string; nth?: number; } interface SynthesizedAnchor { strategy: AnchorStrategy; value: string; stable: boolean; } export declare function synthesizeAnchor(input: AnchorInput): SynthesizedAnchor; export {};