export declare const setTestid: SetTestid; export declare const createTestidQuery: (id: T) => string; export declare const docTestidGet: GetTestid; export declare type testid = string | 'testid-element'; export declare type SetTestid = (id: T) => { 'data-testid': string; }; export declare type GetTestid = (id: T) => NodeListOf;