@instructure/ui-menu 8.10.2 → 8.10.3-snapshot.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,24 +15,28 @@ declare const MenuLocator: {
15
15
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
16
16
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
17
17
  } & {
18
+ toString: (maxLength?: number | undefined, options?: {
19
+ highlight: boolean;
20
+ } | undefined) => string;
21
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
22
+ children: (selector: string) => Element[];
23
+ title: () => string | null | undefined;
24
+ id: () => string;
25
+ tagName: () => string;
26
+ getAttribute: (qualifiedName: string) => string | null;
27
+ getBoundingClientRect: () => DOMRect;
28
+ matches: (selector: string | undefined) => boolean;
18
29
  visible: () => boolean;
19
30
  value: () => string | null;
20
31
  disabled: () => string | null;
21
32
  role: () => string | null;
22
- id: () => string;
23
33
  label: () => string | null | undefined;
24
- title: () => string | null | undefined;
25
- toString: (maxLength?: number | undefined, options?: {
26
- highlight: boolean;
27
- } | undefined) => string;
28
34
  getId: () => string;
29
35
  getOwnerWindow: () => (Window & typeof globalThis) | null;
30
36
  getOwnerDocument: () => Document;
31
37
  getComputedStyle: () => CSSStyleDeclaration;
32
38
  getTagName: () => string;
33
- tagName: () => string;
34
39
  typeIn: (text: string) => Promise<void>;
35
- getAttribute: (qualifiedName: string) => string | null;
36
40
  getDOMNode: () => Element;
37
41
  node: () => Element;
38
42
  debug: (maxLength?: number | undefined, options?: {
@@ -40,9 +44,8 @@ declare const MenuLocator: {
40
44
  } | undefined) => void;
41
45
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
42
46
  getTextContent: () => string | null;
43
- getParentNode: () => (Node & ParentNode) | null;
44
- parent: () => (Node & ParentNode) | null;
45
- getBoundingClientRect: () => DOMRect;
47
+ getParentNode: () => ParentNode | null;
48
+ parent: () => ParentNode | null;
46
49
  rect: () => DOMRect;
47
50
  hasClass: (classname: string) => boolean;
48
51
  containsFocus: () => boolean;
@@ -54,19 +57,17 @@ declare const MenuLocator: {
54
57
  exists: () => boolean;
55
58
  text: () => string | null;
56
59
  empty: () => boolean;
57
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
58
60
  descendants: (selector: string) => Element[];
59
- ancestors: (selector: string) => (Node & ParentNode)[];
61
+ ancestors: (selector: string) => ParentNode[];
60
62
  attribute: (qualifiedName: string) => string | null;
61
63
  style: (property: string) => string;
62
64
  classNames: () => string[];
63
- matches: (selector: string | undefined) => boolean;
64
65
  checked: () => any;
65
66
  selected: () => any;
66
67
  readonly: () => any;
67
- children: (selector: string) => Element[];
68
- parents: (selector: string) => (Node & ParentNode)[];
68
+ parents: (selector: string) => ParentNode[];
69
69
  } & {
70
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
70
71
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
71
72
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
72
73
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -104,7 +105,6 @@ declare const MenuLocator: {
104
105
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
105
106
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
106
107
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
107
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
108
108
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
109
109
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
110
110
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -154,24 +154,28 @@ declare const MenuLocator: {
154
154
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
155
155
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
156
156
  } & {
157
+ toString: (maxLength?: number | undefined, options?: {
158
+ highlight: boolean;
159
+ } | undefined) => string;
160
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
161
+ children: (selector: string) => Element[];
162
+ title: () => string | null | undefined;
163
+ id: () => string;
164
+ tagName: () => string;
165
+ getAttribute: (qualifiedName: string) => string | null;
166
+ getBoundingClientRect: () => DOMRect;
167
+ matches: (selector: string | undefined) => boolean;
157
168
  visible: () => boolean;
158
169
  value: () => string | null;
159
170
  disabled: () => string | null;
160
171
  role: () => string | null;
161
- id: () => string;
162
172
  label: () => string | null | undefined;
163
- title: () => string | null | undefined;
164
- toString: (maxLength?: number | undefined, options?: {
165
- highlight: boolean;
166
- } | undefined) => string;
167
173
  getId: () => string;
168
174
  getOwnerWindow: () => (Window & typeof globalThis) | null;
169
175
  getOwnerDocument: () => Document;
170
176
  getComputedStyle: () => CSSStyleDeclaration;
171
177
  getTagName: () => string;
172
- tagName: () => string;
173
178
  typeIn: (text: string) => Promise<void>;
174
- getAttribute: (qualifiedName: string) => string | null;
175
179
  getDOMNode: () => Element;
176
180
  node: () => Element;
177
181
  debug: (maxLength?: number | undefined, options?: {
@@ -179,9 +183,8 @@ declare const MenuLocator: {
179
183
  } | undefined) => void;
180
184
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
181
185
  getTextContent: () => string | null;
182
- getParentNode: () => (Node & ParentNode) | null;
183
- parent: () => (Node & ParentNode) | null;
184
- getBoundingClientRect: () => DOMRect;
186
+ getParentNode: () => ParentNode | null;
187
+ parent: () => ParentNode | null;
185
188
  rect: () => DOMRect;
186
189
  hasClass: (classname: string) => boolean;
187
190
  containsFocus: () => boolean;
@@ -193,19 +196,17 @@ declare const MenuLocator: {
193
196
  exists: () => boolean;
194
197
  text: () => string | null;
195
198
  empty: () => boolean;
196
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
197
199
  descendants: (selector: string) => Element[];
198
- ancestors: (selector: string) => (Node & ParentNode)[];
200
+ ancestors: (selector: string) => ParentNode[];
199
201
  attribute: (qualifiedName: string) => string | null;
200
202
  style: (property: string) => string;
201
203
  classNames: () => string[];
202
- matches: (selector: string | undefined) => boolean;
203
204
  checked: () => any;
204
205
  selected: () => any;
205
206
  readonly: () => any;
206
- children: (selector: string) => Element[];
207
- parents: (selector: string) => (Node & ParentNode)[];
207
+ parents: (selector: string) => ParentNode[];
208
208
  } & {
209
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
209
210
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
210
211
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
211
212
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -243,7 +244,6 @@ declare const MenuLocator: {
243
244
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
244
245
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
245
246
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
246
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
247
247
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
248
248
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
249
249
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -293,24 +293,28 @@ declare const MenuLocator: {
293
293
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
294
294
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
295
295
  } & {
296
+ toString: (maxLength?: number | undefined, options?: {
297
+ highlight: boolean;
298
+ } | undefined) => string;
299
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
300
+ children: (selector: string) => Element[];
301
+ title: () => string | null | undefined;
302
+ id: () => string;
303
+ tagName: () => string;
304
+ getAttribute: (qualifiedName: string) => string | null;
305
+ getBoundingClientRect: () => DOMRect;
306
+ matches: (selector: string | undefined) => boolean;
296
307
  visible: () => boolean;
297
308
  value: () => string | null;
298
309
  disabled: () => string | null;
299
310
  role: () => string | null;
300
- id: () => string;
301
311
  label: () => string | null | undefined;
302
- title: () => string | null | undefined;
303
- toString: (maxLength?: number | undefined, options?: {
304
- highlight: boolean;
305
- } | undefined) => string;
306
312
  getId: () => string;
307
313
  getOwnerWindow: () => (Window & typeof globalThis) | null;
308
314
  getOwnerDocument: () => Document;
309
315
  getComputedStyle: () => CSSStyleDeclaration;
310
316
  getTagName: () => string;
311
- tagName: () => string;
312
317
  typeIn: (text: string) => Promise<void>;
313
- getAttribute: (qualifiedName: string) => string | null;
314
318
  getDOMNode: () => Element;
315
319
  node: () => Element;
316
320
  debug: (maxLength?: number | undefined, options?: {
@@ -318,9 +322,8 @@ declare const MenuLocator: {
318
322
  } | undefined) => void;
319
323
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
320
324
  getTextContent: () => string | null;
321
- getParentNode: () => (Node & ParentNode) | null;
322
- parent: () => (Node & ParentNode) | null;
323
- getBoundingClientRect: () => DOMRect;
325
+ getParentNode: () => ParentNode | null;
326
+ parent: () => ParentNode | null;
324
327
  rect: () => DOMRect;
325
328
  hasClass: (classname: string) => boolean;
326
329
  containsFocus: () => boolean;
@@ -332,19 +335,17 @@ declare const MenuLocator: {
332
335
  exists: () => boolean;
333
336
  text: () => string | null;
334
337
  empty: () => boolean;
335
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
336
338
  descendants: (selector: string) => Element[];
337
- ancestors: (selector: string) => (Node & ParentNode)[];
339
+ ancestors: (selector: string) => ParentNode[];
338
340
  attribute: (qualifiedName: string) => string | null;
339
341
  style: (property: string) => string;
340
342
  classNames: () => string[];
341
- matches: (selector: string | undefined) => boolean;
342
343
  checked: () => any;
343
344
  selected: () => any;
344
345
  readonly: () => any;
345
- children: (selector: string) => Element[];
346
- parents: (selector: string) => (Node & ParentNode)[];
346
+ parents: (selector: string) => ParentNode[];
347
347
  } & {
348
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
348
349
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
349
350
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
350
351
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -382,7 +383,6 @@ declare const MenuLocator: {
382
383
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
383
384
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
384
385
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
385
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
386
386
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
387
387
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
388
388
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -432,24 +432,28 @@ declare const MenuLocator: {
432
432
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
433
433
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
434
434
  } & {
435
+ toString: (maxLength?: number | undefined, options?: {
436
+ highlight: boolean;
437
+ } | undefined) => string;
438
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
439
+ children: (selector: string) => Element[];
440
+ title: () => string | null | undefined;
441
+ id: () => string;
442
+ tagName: () => string;
443
+ getAttribute: (qualifiedName: string) => string | null;
444
+ getBoundingClientRect: () => DOMRect;
445
+ matches: (selector: string | undefined) => boolean;
435
446
  visible: () => boolean;
436
447
  value: () => string | null;
437
448
  disabled: () => string | null;
438
449
  role: () => string | null;
439
- id: () => string;
440
450
  label: () => string | null | undefined;
441
- title: () => string | null | undefined;
442
- toString: (maxLength?: number | undefined, options?: {
443
- highlight: boolean;
444
- } | undefined) => string;
445
451
  getId: () => string;
446
452
  getOwnerWindow: () => (Window & typeof globalThis) | null;
447
453
  getOwnerDocument: () => Document;
448
454
  getComputedStyle: () => CSSStyleDeclaration;
449
455
  getTagName: () => string;
450
- tagName: () => string;
451
456
  typeIn: (text: string) => Promise<void>;
452
- getAttribute: (qualifiedName: string) => string | null;
453
457
  getDOMNode: () => Element;
454
458
  node: () => Element;
455
459
  debug: (maxLength?: number | undefined, options?: {
@@ -457,9 +461,8 @@ declare const MenuLocator: {
457
461
  } | undefined) => void;
458
462
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
459
463
  getTextContent: () => string | null;
460
- getParentNode: () => (Node & ParentNode) | null;
461
- parent: () => (Node & ParentNode) | null;
462
- getBoundingClientRect: () => DOMRect;
464
+ getParentNode: () => ParentNode | null;
465
+ parent: () => ParentNode | null;
463
466
  rect: () => DOMRect;
464
467
  hasClass: (classname: string) => boolean;
465
468
  containsFocus: () => boolean;
@@ -471,19 +474,17 @@ declare const MenuLocator: {
471
474
  exists: () => boolean;
472
475
  text: () => string | null;
473
476
  empty: () => boolean;
474
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
475
477
  descendants: (selector: string) => Element[];
476
- ancestors: (selector: string) => (Node & ParentNode)[];
478
+ ancestors: (selector: string) => ParentNode[];
477
479
  attribute: (qualifiedName: string) => string | null;
478
480
  style: (property: string) => string;
479
481
  classNames: () => string[];
480
- matches: (selector: string | undefined) => boolean;
481
482
  checked: () => any;
482
483
  selected: () => any;
483
484
  readonly: () => any;
484
- children: (selector: string) => Element[];
485
- parents: (selector: string) => (Node & ParentNode)[];
485
+ parents: (selector: string) => ParentNode[];
486
486
  } & {
487
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
487
488
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
488
489
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
489
490
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -521,7 +522,6 @@ declare const MenuLocator: {
521
522
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
522
523
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
523
524
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
524
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
525
525
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
526
526
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
527
527
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -571,24 +571,28 @@ declare const MenuLocator: {
571
571
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
572
572
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
573
573
  } & {
574
+ toString: (maxLength?: number | undefined, options?: {
575
+ highlight: boolean;
576
+ } | undefined) => string;
577
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
578
+ children: (selector: string) => Element[];
579
+ title: () => string | null | undefined;
580
+ id: () => string;
581
+ tagName: () => string;
582
+ getAttribute: (qualifiedName: string) => string | null;
583
+ getBoundingClientRect: () => DOMRect;
584
+ matches: (selector: string | undefined) => boolean;
574
585
  visible: () => boolean;
575
586
  value: () => string | null;
576
587
  disabled: () => string | null;
577
588
  role: () => string | null;
578
- id: () => string;
579
589
  label: () => string | null | undefined;
580
- title: () => string | null | undefined;
581
- toString: (maxLength?: number | undefined, options?: {
582
- highlight: boolean;
583
- } | undefined) => string;
584
590
  getId: () => string;
585
591
  getOwnerWindow: () => (Window & typeof globalThis) | null;
586
592
  getOwnerDocument: () => Document;
587
593
  getComputedStyle: () => CSSStyleDeclaration;
588
594
  getTagName: () => string;
589
- tagName: () => string;
590
595
  typeIn: (text: string) => Promise<void>;
591
- getAttribute: (qualifiedName: string) => string | null;
592
596
  getDOMNode: () => Element;
593
597
  node: () => Element;
594
598
  debug: (maxLength?: number | undefined, options?: {
@@ -596,9 +600,8 @@ declare const MenuLocator: {
596
600
  } | undefined) => void;
597
601
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
598
602
  getTextContent: () => string | null;
599
- getParentNode: () => (Node & ParentNode) | null;
600
- parent: () => (Node & ParentNode) | null;
601
- getBoundingClientRect: () => DOMRect;
603
+ getParentNode: () => ParentNode | null;
604
+ parent: () => ParentNode | null;
602
605
  rect: () => DOMRect;
603
606
  hasClass: (classname: string) => boolean;
604
607
  containsFocus: () => boolean;
@@ -610,19 +613,17 @@ declare const MenuLocator: {
610
613
  exists: () => boolean;
611
614
  text: () => string | null;
612
615
  empty: () => boolean;
613
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
614
616
  descendants: (selector: string) => Element[];
615
- ancestors: (selector: string) => (Node & ParentNode)[];
617
+ ancestors: (selector: string) => ParentNode[];
616
618
  attribute: (qualifiedName: string) => string | null;
617
619
  style: (property: string) => string;
618
620
  classNames: () => string[];
619
- matches: (selector: string | undefined) => boolean;
620
621
  checked: () => any;
621
622
  selected: () => any;
622
623
  readonly: () => any;
623
- children: (selector: string) => Element[];
624
- parents: (selector: string) => (Node & ParentNode)[];
624
+ parents: (selector: string) => ParentNode[];
625
625
  } & {
626
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
626
627
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
627
628
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
628
629
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -660,7 +661,6 @@ declare const MenuLocator: {
660
661
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
661
662
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
662
663
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
663
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
664
664
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
665
665
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
666
666
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -711,24 +711,28 @@ declare const MenuLocator: {
711
711
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
712
712
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
713
713
  } & {
714
+ toString: (maxLength?: number | undefined, options?: {
715
+ highlight: boolean;
716
+ } | undefined) => string;
717
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
718
+ children: (selector: string) => Element[];
719
+ title: () => string | null | undefined;
720
+ id: () => string;
721
+ tagName: () => string;
722
+ getAttribute: (qualifiedName: string) => string | null;
723
+ getBoundingClientRect: () => DOMRect;
724
+ matches: (selector: string | undefined) => boolean;
714
725
  visible: () => boolean;
715
726
  value: () => string | null;
716
727
  disabled: () => string | null;
717
728
  role: () => string | null;
718
- id: () => string;
719
729
  label: () => string | null | undefined;
720
- title: () => string | null | undefined;
721
- toString: (maxLength?: number | undefined, options?: {
722
- highlight: boolean;
723
- } | undefined) => string;
724
730
  getId: () => string;
725
731
  getOwnerWindow: () => (Window & typeof globalThis) | null;
726
732
  getOwnerDocument: () => Document;
727
733
  getComputedStyle: () => CSSStyleDeclaration;
728
734
  getTagName: () => string;
729
- tagName: () => string;
730
735
  typeIn: (text: string) => Promise<void>;
731
- getAttribute: (qualifiedName: string) => string | null;
732
736
  getDOMNode: () => Element;
733
737
  node: () => Element;
734
738
  debug: (maxLength?: number | undefined, options?: {
@@ -736,9 +740,8 @@ declare const MenuLocator: {
736
740
  } | undefined) => void;
737
741
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
738
742
  getTextContent: () => string | null;
739
- getParentNode: () => (Node & ParentNode) | null;
740
- parent: () => (Node & ParentNode) | null;
741
- getBoundingClientRect: () => DOMRect;
743
+ getParentNode: () => ParentNode | null;
744
+ parent: () => ParentNode | null;
742
745
  rect: () => DOMRect;
743
746
  hasClass: (classname: string) => boolean;
744
747
  containsFocus: () => boolean;
@@ -750,19 +753,17 @@ declare const MenuLocator: {
750
753
  exists: () => boolean;
751
754
  text: () => string | null;
752
755
  empty: () => boolean;
753
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
754
756
  descendants: (selector: string) => Element[];
755
- ancestors: (selector: string) => (Node & ParentNode)[];
757
+ ancestors: (selector: string) => ParentNode[];
756
758
  attribute: (qualifiedName: string) => string | null;
757
759
  style: (property: string) => string;
758
760
  classNames: () => string[];
759
- matches: (selector: string | undefined) => boolean;
760
761
  checked: () => any;
761
762
  selected: () => any;
762
763
  readonly: () => any;
763
- children: (selector: string) => Element[];
764
- parents: (selector: string) => (Node & ParentNode)[];
764
+ parents: (selector: string) => ParentNode[];
765
765
  } & {
766
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
766
767
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
767
768
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
768
769
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -800,7 +801,6 @@ declare const MenuLocator: {
800
801
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
801
802
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
802
803
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
803
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
804
804
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
805
805
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
806
806
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -850,24 +850,28 @@ declare const MenuLocator: {
850
850
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
851
851
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
852
852
  } & {
853
+ toString: (maxLength?: number | undefined, options?: {
854
+ highlight: boolean;
855
+ } | undefined) => string;
856
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
857
+ children: (selector: string) => Element[];
858
+ title: () => string | null | undefined;
859
+ id: () => string;
860
+ tagName: () => string;
861
+ getAttribute: (qualifiedName: string) => string | null;
862
+ getBoundingClientRect: () => DOMRect;
863
+ matches: (selector: string | undefined) => boolean;
853
864
  visible: () => boolean;
854
865
  value: () => string | null;
855
866
  disabled: () => string | null;
856
867
  role: () => string | null;
857
- id: () => string;
858
868
  label: () => string | null | undefined;
859
- title: () => string | null | undefined;
860
- toString: (maxLength?: number | undefined, options?: {
861
- highlight: boolean;
862
- } | undefined) => string;
863
869
  getId: () => string;
864
870
  getOwnerWindow: () => (Window & typeof globalThis) | null;
865
871
  getOwnerDocument: () => Document;
866
872
  getComputedStyle: () => CSSStyleDeclaration;
867
873
  getTagName: () => string;
868
- tagName: () => string;
869
874
  typeIn: (text: string) => Promise<void>;
870
- getAttribute: (qualifiedName: string) => string | null;
871
875
  getDOMNode: () => Element;
872
876
  node: () => Element;
873
877
  debug: (maxLength?: number | undefined, options?: {
@@ -875,9 +879,8 @@ declare const MenuLocator: {
875
879
  } | undefined) => void;
876
880
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
877
881
  getTextContent: () => string | null;
878
- getParentNode: () => (Node & ParentNode) | null;
879
- parent: () => (Node & ParentNode) | null;
880
- getBoundingClientRect: () => DOMRect;
882
+ getParentNode: () => ParentNode | null;
883
+ parent: () => ParentNode | null;
881
884
  rect: () => DOMRect;
882
885
  hasClass: (classname: string) => boolean;
883
886
  containsFocus: () => boolean;
@@ -889,19 +892,17 @@ declare const MenuLocator: {
889
892
  exists: () => boolean;
890
893
  text: () => string | null;
891
894
  empty: () => boolean;
892
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
893
895
  descendants: (selector: string) => Element[];
894
- ancestors: (selector: string) => (Node & ParentNode)[];
896
+ ancestors: (selector: string) => ParentNode[];
895
897
  attribute: (qualifiedName: string) => string | null;
896
898
  style: (property: string) => string;
897
899
  classNames: () => string[];
898
- matches: (selector: string | undefined) => boolean;
899
900
  checked: () => any;
900
901
  selected: () => any;
901
902
  readonly: () => any;
902
- children: (selector: string) => Element[];
903
- parents: (selector: string) => (Node & ParentNode)[];
903
+ parents: (selector: string) => ParentNode[];
904
904
  } & {
905
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
905
906
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
906
907
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
907
908
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -939,7 +940,6 @@ declare const MenuLocator: {
939
940
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
940
941
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
941
942
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
942
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
943
943
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
944
944
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
945
945
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -989,24 +989,28 @@ declare const MenuLocator: {
989
989
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
990
990
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
991
991
  } & {
992
+ toString: (maxLength?: number | undefined, options?: {
993
+ highlight: boolean;
994
+ } | undefined) => string;
995
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
996
+ children: (selector: string) => Element[];
997
+ title: () => string | null | undefined;
998
+ id: () => string;
999
+ tagName: () => string;
1000
+ getAttribute: (qualifiedName: string) => string | null;
1001
+ getBoundingClientRect: () => DOMRect;
1002
+ matches: (selector: string | undefined) => boolean;
992
1003
  visible: () => boolean;
993
1004
  value: () => string | null;
994
1005
  disabled: () => string | null;
995
1006
  role: () => string | null;
996
- id: () => string;
997
1007
  label: () => string | null | undefined;
998
- title: () => string | null | undefined;
999
- toString: (maxLength?: number | undefined, options?: {
1000
- highlight: boolean;
1001
- } | undefined) => string;
1002
1008
  getId: () => string;
1003
1009
  getOwnerWindow: () => (Window & typeof globalThis) | null;
1004
1010
  getOwnerDocument: () => Document;
1005
1011
  getComputedStyle: () => CSSStyleDeclaration;
1006
1012
  getTagName: () => string;
1007
- tagName: () => string;
1008
1013
  typeIn: (text: string) => Promise<void>;
1009
- getAttribute: (qualifiedName: string) => string | null;
1010
1014
  getDOMNode: () => Element;
1011
1015
  node: () => Element;
1012
1016
  debug: (maxLength?: number | undefined, options?: {
@@ -1014,9 +1018,8 @@ declare const MenuLocator: {
1014
1018
  } | undefined) => void;
1015
1019
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
1016
1020
  getTextContent: () => string | null;
1017
- getParentNode: () => (Node & ParentNode) | null;
1018
- parent: () => (Node & ParentNode) | null;
1019
- getBoundingClientRect: () => DOMRect;
1021
+ getParentNode: () => ParentNode | null;
1022
+ parent: () => ParentNode | null;
1020
1023
  rect: () => DOMRect;
1021
1024
  hasClass: (classname: string) => boolean;
1022
1025
  containsFocus: () => boolean;
@@ -1028,19 +1031,17 @@ declare const MenuLocator: {
1028
1031
  exists: () => boolean;
1029
1032
  text: () => string | null;
1030
1033
  empty: () => boolean;
1031
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1032
1034
  descendants: (selector: string) => Element[];
1033
- ancestors: (selector: string) => (Node & ParentNode)[];
1035
+ ancestors: (selector: string) => ParentNode[];
1034
1036
  attribute: (qualifiedName: string) => string | null;
1035
1037
  style: (property: string) => string;
1036
1038
  classNames: () => string[];
1037
- matches: (selector: string | undefined) => boolean;
1038
1039
  checked: () => any;
1039
1040
  selected: () => any;
1040
1041
  readonly: () => any;
1041
- children: (selector: string) => Element[];
1042
- parents: (selector: string) => (Node & ParentNode)[];
1042
+ parents: (selector: string) => ParentNode[];
1043
1043
  } & {
1044
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1044
1045
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1045
1046
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1046
1047
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1078,7 +1079,6 @@ declare const MenuLocator: {
1078
1079
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1079
1080
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1080
1081
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1081
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1082
1082
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1083
1083
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1084
1084
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1138,24 +1138,28 @@ declare const MenuLocator: {
1138
1138
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
1139
1139
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
1140
1140
  } & {
1141
+ toString: (maxLength?: number | undefined, options?: {
1142
+ highlight: boolean;
1143
+ } | undefined) => string;
1144
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1145
+ children: (selector: string) => Element[];
1146
+ title: () => string | null | undefined;
1147
+ id: () => string;
1148
+ tagName: () => string;
1149
+ getAttribute: (qualifiedName: string) => string | null;
1150
+ getBoundingClientRect: () => DOMRect;
1151
+ matches: (selector: string | undefined) => boolean;
1141
1152
  visible: () => boolean;
1142
1153
  value: () => string | null;
1143
1154
  disabled: () => string | null;
1144
1155
  role: () => string | null;
1145
- id: () => string;
1146
1156
  label: () => string | null | undefined;
1147
- title: () => string | null | undefined;
1148
- toString: (maxLength?: number | undefined, options?: {
1149
- highlight: boolean;
1150
- } | undefined) => string;
1151
1157
  getId: () => string;
1152
1158
  getOwnerWindow: () => (Window & typeof globalThis) | null;
1153
1159
  getOwnerDocument: () => Document;
1154
1160
  getComputedStyle: () => CSSStyleDeclaration;
1155
1161
  getTagName: () => string;
1156
- tagName: () => string;
1157
1162
  typeIn: (text: string) => Promise<void>;
1158
- getAttribute: (qualifiedName: string) => string | null;
1159
1163
  getDOMNode: () => Element;
1160
1164
  node: () => Element;
1161
1165
  debug: (maxLength?: number | undefined, options?: {
@@ -1163,9 +1167,8 @@ declare const MenuLocator: {
1163
1167
  } | undefined) => void;
1164
1168
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
1165
1169
  getTextContent: () => string | null;
1166
- getParentNode: () => (Node & ParentNode) | null;
1167
- parent: () => (Node & ParentNode) | null;
1168
- getBoundingClientRect: () => DOMRect;
1170
+ getParentNode: () => ParentNode | null;
1171
+ parent: () => ParentNode | null;
1169
1172
  rect: () => DOMRect;
1170
1173
  hasClass: (classname: string) => boolean;
1171
1174
  containsFocus: () => boolean;
@@ -1177,19 +1180,17 @@ declare const MenuLocator: {
1177
1180
  exists: () => boolean;
1178
1181
  text: () => string | null;
1179
1182
  empty: () => boolean;
1180
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1181
1183
  descendants: (selector: string) => Element[];
1182
- ancestors: (selector: string) => (Node & ParentNode)[];
1184
+ ancestors: (selector: string) => ParentNode[];
1183
1185
  attribute: (qualifiedName: string) => string | null;
1184
1186
  style: (property: string) => string;
1185
1187
  classNames: () => string[];
1186
- matches: (selector: string | undefined) => boolean;
1187
1188
  checked: () => any;
1188
1189
  selected: () => any;
1189
1190
  readonly: () => any;
1190
- children: (selector: string) => Element[];
1191
- parents: (selector: string) => (Node & ParentNode)[];
1191
+ parents: (selector: string) => ParentNode[];
1192
1192
  } & {
1193
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1193
1194
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1194
1195
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1195
1196
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1227,7 +1228,6 @@ declare const MenuLocator: {
1227
1228
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1228
1229
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1229
1230
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1230
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1231
1231
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1232
1232
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1233
1233
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1277,24 +1277,28 @@ declare const MenuLocator: {
1277
1277
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
1278
1278
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
1279
1279
  } & {
1280
+ toString: (maxLength?: number | undefined, options?: {
1281
+ highlight: boolean;
1282
+ } | undefined) => string;
1283
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1284
+ children: (selector: string) => Element[];
1285
+ title: () => string | null | undefined;
1286
+ id: () => string;
1287
+ tagName: () => string;
1288
+ getAttribute: (qualifiedName: string) => string | null;
1289
+ getBoundingClientRect: () => DOMRect;
1290
+ matches: (selector: string | undefined) => boolean;
1280
1291
  visible: () => boolean;
1281
1292
  value: () => string | null;
1282
1293
  disabled: () => string | null;
1283
1294
  role: () => string | null;
1284
- id: () => string;
1285
1295
  label: () => string | null | undefined;
1286
- title: () => string | null | undefined;
1287
- toString: (maxLength?: number | undefined, options?: {
1288
- highlight: boolean;
1289
- } | undefined) => string;
1290
1296
  getId: () => string;
1291
1297
  getOwnerWindow: () => (Window & typeof globalThis) | null;
1292
1298
  getOwnerDocument: () => Document;
1293
1299
  getComputedStyle: () => CSSStyleDeclaration;
1294
1300
  getTagName: () => string;
1295
- tagName: () => string;
1296
1301
  typeIn: (text: string) => Promise<void>;
1297
- getAttribute: (qualifiedName: string) => string | null;
1298
1302
  getDOMNode: () => Element;
1299
1303
  node: () => Element;
1300
1304
  debug: (maxLength?: number | undefined, options?: {
@@ -1302,9 +1306,8 @@ declare const MenuLocator: {
1302
1306
  } | undefined) => void;
1303
1307
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
1304
1308
  getTextContent: () => string | null;
1305
- getParentNode: () => (Node & ParentNode) | null;
1306
- parent: () => (Node & ParentNode) | null;
1307
- getBoundingClientRect: () => DOMRect;
1309
+ getParentNode: () => ParentNode | null;
1310
+ parent: () => ParentNode | null;
1308
1311
  rect: () => DOMRect;
1309
1312
  hasClass: (classname: string) => boolean;
1310
1313
  containsFocus: () => boolean;
@@ -1316,19 +1319,17 @@ declare const MenuLocator: {
1316
1319
  exists: () => boolean;
1317
1320
  text: () => string | null;
1318
1321
  empty: () => boolean;
1319
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1320
1322
  descendants: (selector: string) => Element[];
1321
- ancestors: (selector: string) => (Node & ParentNode)[];
1323
+ ancestors: (selector: string) => ParentNode[];
1322
1324
  attribute: (qualifiedName: string) => string | null;
1323
1325
  style: (property: string) => string;
1324
1326
  classNames: () => string[];
1325
- matches: (selector: string | undefined) => boolean;
1326
1327
  checked: () => any;
1327
1328
  selected: () => any;
1328
1329
  readonly: () => any;
1329
- children: (selector: string) => Element[];
1330
- parents: (selector: string) => (Node & ParentNode)[];
1330
+ parents: (selector: string) => ParentNode[];
1331
1331
  } & {
1332
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1332
1333
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1333
1334
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1334
1335
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1366,7 +1367,6 @@ declare const MenuLocator: {
1366
1367
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1367
1368
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1368
1369
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1369
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1370
1370
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1371
1371
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1372
1372
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1416,24 +1416,28 @@ declare const MenuLocator: {
1416
1416
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
1417
1417
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
1418
1418
  } & {
1419
+ toString: (maxLength?: number | undefined, options?: {
1420
+ highlight: boolean;
1421
+ } | undefined) => string;
1422
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1423
+ children: (selector: string) => Element[];
1424
+ title: () => string | null | undefined;
1425
+ id: () => string;
1426
+ tagName: () => string;
1427
+ getAttribute: (qualifiedName: string) => string | null;
1428
+ getBoundingClientRect: () => DOMRect;
1429
+ matches: (selector: string | undefined) => boolean;
1419
1430
  visible: () => boolean;
1420
1431
  value: () => string | null;
1421
1432
  disabled: () => string | null;
1422
1433
  role: () => string | null;
1423
- id: () => string;
1424
1434
  label: () => string | null | undefined;
1425
- title: () => string | null | undefined;
1426
- toString: (maxLength?: number | undefined, options?: {
1427
- highlight: boolean;
1428
- } | undefined) => string;
1429
1435
  getId: () => string;
1430
1436
  getOwnerWindow: () => (Window & typeof globalThis) | null;
1431
1437
  getOwnerDocument: () => Document;
1432
1438
  getComputedStyle: () => CSSStyleDeclaration;
1433
1439
  getTagName: () => string;
1434
- tagName: () => string;
1435
1440
  typeIn: (text: string) => Promise<void>;
1436
- getAttribute: (qualifiedName: string) => string | null;
1437
1441
  getDOMNode: () => Element;
1438
1442
  node: () => Element;
1439
1443
  debug: (maxLength?: number | undefined, options?: {
@@ -1441,9 +1445,8 @@ declare const MenuLocator: {
1441
1445
  } | undefined) => void;
1442
1446
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
1443
1447
  getTextContent: () => string | null;
1444
- getParentNode: () => (Node & ParentNode) | null;
1445
- parent: () => (Node & ParentNode) | null;
1446
- getBoundingClientRect: () => DOMRect;
1448
+ getParentNode: () => ParentNode | null;
1449
+ parent: () => ParentNode | null;
1447
1450
  rect: () => DOMRect;
1448
1451
  hasClass: (classname: string) => boolean;
1449
1452
  containsFocus: () => boolean;
@@ -1455,19 +1458,17 @@ declare const MenuLocator: {
1455
1458
  exists: () => boolean;
1456
1459
  text: () => string | null;
1457
1460
  empty: () => boolean;
1458
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1459
1461
  descendants: (selector: string) => Element[];
1460
- ancestors: (selector: string) => (Node & ParentNode)[];
1462
+ ancestors: (selector: string) => ParentNode[];
1461
1463
  attribute: (qualifiedName: string) => string | null;
1462
1464
  style: (property: string) => string;
1463
1465
  classNames: () => string[];
1464
- matches: (selector: string | undefined) => boolean;
1465
1466
  checked: () => any;
1466
1467
  selected: () => any;
1467
1468
  readonly: () => any;
1468
- children: (selector: string) => Element[];
1469
- parents: (selector: string) => (Node & ParentNode)[];
1469
+ parents: (selector: string) => ParentNode[];
1470
1470
  } & {
1471
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1471
1472
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1472
1473
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1473
1474
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1505,7 +1506,6 @@ declare const MenuLocator: {
1505
1506
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1506
1507
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1507
1508
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1508
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1509
1509
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1510
1510
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1511
1511
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1555,24 +1555,28 @@ declare const MenuLocator: {
1555
1555
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
1556
1556
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
1557
1557
  } & {
1558
+ toString: (maxLength?: number | undefined, options?: {
1559
+ highlight: boolean;
1560
+ } | undefined) => string;
1561
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1562
+ children: (selector: string) => Element[];
1563
+ title: () => string | null | undefined;
1564
+ id: () => string;
1565
+ tagName: () => string;
1566
+ getAttribute: (qualifiedName: string) => string | null;
1567
+ getBoundingClientRect: () => DOMRect;
1568
+ matches: (selector: string | undefined) => boolean;
1558
1569
  visible: () => boolean;
1559
1570
  value: () => string | null;
1560
1571
  disabled: () => string | null;
1561
1572
  role: () => string | null;
1562
- id: () => string;
1563
1573
  label: () => string | null | undefined;
1564
- title: () => string | null | undefined;
1565
- toString: (maxLength?: number | undefined, options?: {
1566
- highlight: boolean;
1567
- } | undefined) => string;
1568
1574
  getId: () => string;
1569
1575
  getOwnerWindow: () => (Window & typeof globalThis) | null;
1570
1576
  getOwnerDocument: () => Document;
1571
1577
  getComputedStyle: () => CSSStyleDeclaration;
1572
1578
  getTagName: () => string;
1573
- tagName: () => string;
1574
1579
  typeIn: (text: string) => Promise<void>;
1575
- getAttribute: (qualifiedName: string) => string | null;
1576
1580
  getDOMNode: () => Element;
1577
1581
  node: () => Element;
1578
1582
  debug: (maxLength?: number | undefined, options?: {
@@ -1580,9 +1584,8 @@ declare const MenuLocator: {
1580
1584
  } | undefined) => void;
1581
1585
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
1582
1586
  getTextContent: () => string | null;
1583
- getParentNode: () => (Node & ParentNode) | null;
1584
- parent: () => (Node & ParentNode) | null;
1585
- getBoundingClientRect: () => DOMRect;
1587
+ getParentNode: () => ParentNode | null;
1588
+ parent: () => ParentNode | null;
1586
1589
  rect: () => DOMRect;
1587
1590
  hasClass: (classname: string) => boolean;
1588
1591
  containsFocus: () => boolean;
@@ -1594,19 +1597,17 @@ declare const MenuLocator: {
1594
1597
  exists: () => boolean;
1595
1598
  text: () => string | null;
1596
1599
  empty: () => boolean;
1597
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1598
1600
  descendants: (selector: string) => Element[];
1599
- ancestors: (selector: string) => (Node & ParentNode)[];
1601
+ ancestors: (selector: string) => ParentNode[];
1600
1602
  attribute: (qualifiedName: string) => string | null;
1601
1603
  style: (property: string) => string;
1602
1604
  classNames: () => string[];
1603
- matches: (selector: string | undefined) => boolean;
1604
1605
  checked: () => any;
1605
1606
  selected: () => any;
1606
1607
  readonly: () => any;
1607
- children: (selector: string) => Element[];
1608
- parents: (selector: string) => (Node & ParentNode)[];
1608
+ parents: (selector: string) => ParentNode[];
1609
1609
  } & {
1610
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1610
1611
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1611
1612
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1612
1613
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1644,7 +1645,6 @@ declare const MenuLocator: {
1644
1645
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1645
1646
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1646
1647
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1647
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1648
1648
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1649
1649
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1650
1650
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1694,24 +1694,28 @@ declare const MenuLocator: {
1694
1694
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
1695
1695
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
1696
1696
  } & {
1697
+ toString: (maxLength?: number | undefined, options?: {
1698
+ highlight: boolean;
1699
+ } | undefined) => string;
1700
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1701
+ children: (selector: string) => Element[];
1702
+ title: () => string | null | undefined;
1703
+ id: () => string;
1704
+ tagName: () => string;
1705
+ getAttribute: (qualifiedName: string) => string | null;
1706
+ getBoundingClientRect: () => DOMRect;
1707
+ matches: (selector: string | undefined) => boolean;
1697
1708
  visible: () => boolean;
1698
1709
  value: () => string | null;
1699
1710
  disabled: () => string | null;
1700
1711
  role: () => string | null;
1701
- id: () => string;
1702
1712
  label: () => string | null | undefined;
1703
- title: () => string | null | undefined;
1704
- toString: (maxLength?: number | undefined, options?: {
1705
- highlight: boolean;
1706
- } | undefined) => string;
1707
1713
  getId: () => string;
1708
1714
  getOwnerWindow: () => (Window & typeof globalThis) | null;
1709
1715
  getOwnerDocument: () => Document;
1710
1716
  getComputedStyle: () => CSSStyleDeclaration;
1711
1717
  getTagName: () => string;
1712
- tagName: () => string;
1713
1718
  typeIn: (text: string) => Promise<void>;
1714
- getAttribute: (qualifiedName: string) => string | null;
1715
1719
  getDOMNode: () => Element;
1716
1720
  node: () => Element;
1717
1721
  debug: (maxLength?: number | undefined, options?: {
@@ -1719,9 +1723,8 @@ declare const MenuLocator: {
1719
1723
  } | undefined) => void;
1720
1724
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
1721
1725
  getTextContent: () => string | null;
1722
- getParentNode: () => (Node & ParentNode) | null;
1723
- parent: () => (Node & ParentNode) | null;
1724
- getBoundingClientRect: () => DOMRect;
1726
+ getParentNode: () => ParentNode | null;
1727
+ parent: () => ParentNode | null;
1725
1728
  rect: () => DOMRect;
1726
1729
  hasClass: (classname: string) => boolean;
1727
1730
  containsFocus: () => boolean;
@@ -1733,19 +1736,17 @@ declare const MenuLocator: {
1733
1736
  exists: () => boolean;
1734
1737
  text: () => string | null;
1735
1738
  empty: () => boolean;
1736
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1737
1739
  descendants: (selector: string) => Element[];
1738
- ancestors: (selector: string) => (Node & ParentNode)[];
1740
+ ancestors: (selector: string) => ParentNode[];
1739
1741
  attribute: (qualifiedName: string) => string | null;
1740
1742
  style: (property: string) => string;
1741
1743
  classNames: () => string[];
1742
- matches: (selector: string | undefined) => boolean;
1743
1744
  checked: () => any;
1744
1745
  selected: () => any;
1745
1746
  readonly: () => any;
1746
- children: (selector: string) => Element[];
1747
- parents: (selector: string) => (Node & ParentNode)[];
1747
+ parents: (selector: string) => ParentNode[];
1748
1748
  } & {
1749
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1749
1750
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1750
1751
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1751
1752
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1783,7 +1784,6 @@ declare const MenuLocator: {
1783
1784
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1784
1785
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1785
1786
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1786
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1787
1787
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1788
1788
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1789
1789
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1833,24 +1833,28 @@ declare const MenuLocator: {
1833
1833
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
1834
1834
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
1835
1835
  } & {
1836
+ toString: (maxLength?: number | undefined, options?: {
1837
+ highlight: boolean;
1838
+ } | undefined) => string;
1839
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1840
+ children: (selector: string) => Element[];
1841
+ title: () => string | null | undefined;
1842
+ id: () => string;
1843
+ tagName: () => string;
1844
+ getAttribute: (qualifiedName: string) => string | null;
1845
+ getBoundingClientRect: () => DOMRect;
1846
+ matches: (selector: string | undefined) => boolean;
1836
1847
  visible: () => boolean;
1837
1848
  value: () => string | null;
1838
1849
  disabled: () => string | null;
1839
1850
  role: () => string | null;
1840
- id: () => string;
1841
1851
  label: () => string | null | undefined;
1842
- title: () => string | null | undefined;
1843
- toString: (maxLength?: number | undefined, options?: {
1844
- highlight: boolean;
1845
- } | undefined) => string;
1846
1852
  getId: () => string;
1847
1853
  getOwnerWindow: () => (Window & typeof globalThis) | null;
1848
1854
  getOwnerDocument: () => Document;
1849
1855
  getComputedStyle: () => CSSStyleDeclaration;
1850
1856
  getTagName: () => string;
1851
- tagName: () => string;
1852
1857
  typeIn: (text: string) => Promise<void>;
1853
- getAttribute: (qualifiedName: string) => string | null;
1854
1858
  getDOMNode: () => Element;
1855
1859
  node: () => Element;
1856
1860
  debug: (maxLength?: number | undefined, options?: {
@@ -1858,9 +1862,8 @@ declare const MenuLocator: {
1858
1862
  } | undefined) => void;
1859
1863
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
1860
1864
  getTextContent: () => string | null;
1861
- getParentNode: () => (Node & ParentNode) | null;
1862
- parent: () => (Node & ParentNode) | null;
1863
- getBoundingClientRect: () => DOMRect;
1865
+ getParentNode: () => ParentNode | null;
1866
+ parent: () => ParentNode | null;
1864
1867
  rect: () => DOMRect;
1865
1868
  hasClass: (classname: string) => boolean;
1866
1869
  containsFocus: () => boolean;
@@ -1872,19 +1875,17 @@ declare const MenuLocator: {
1872
1875
  exists: () => boolean;
1873
1876
  text: () => string | null;
1874
1877
  empty: () => boolean;
1875
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1876
1878
  descendants: (selector: string) => Element[];
1877
- ancestors: (selector: string) => (Node & ParentNode)[];
1879
+ ancestors: (selector: string) => ParentNode[];
1878
1880
  attribute: (qualifiedName: string) => string | null;
1879
1881
  style: (property: string) => string;
1880
1882
  classNames: () => string[];
1881
- matches: (selector: string | undefined) => boolean;
1882
1883
  checked: () => any;
1883
1884
  selected: () => any;
1884
1885
  readonly: () => any;
1885
- children: (selector: string) => Element[];
1886
- parents: (selector: string) => (Node & ParentNode)[];
1886
+ parents: (selector: string) => ParentNode[];
1887
1887
  } & {
1888
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1888
1889
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1889
1890
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1890
1891
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1922,7 +1923,6 @@ declare const MenuLocator: {
1922
1923
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1923
1924
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1924
1925
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1925
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1926
1926
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1927
1927
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1928
1928
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1973,24 +1973,28 @@ declare const MenuLocator: {
1973
1973
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
1974
1974
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
1975
1975
  } & {
1976
+ toString: (maxLength?: number | undefined, options?: {
1977
+ highlight: boolean;
1978
+ } | undefined) => string;
1979
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1980
+ children: (selector: string) => Element[];
1981
+ title: () => string | null | undefined;
1982
+ id: () => string;
1983
+ tagName: () => string;
1984
+ getAttribute: (qualifiedName: string) => string | null;
1985
+ getBoundingClientRect: () => DOMRect;
1986
+ matches: (selector: string | undefined) => boolean;
1976
1987
  visible: () => boolean;
1977
1988
  value: () => string | null;
1978
1989
  disabled: () => string | null;
1979
1990
  role: () => string | null;
1980
- id: () => string;
1981
1991
  label: () => string | null | undefined;
1982
- title: () => string | null | undefined;
1983
- toString: (maxLength?: number | undefined, options?: {
1984
- highlight: boolean;
1985
- } | undefined) => string;
1986
1992
  getId: () => string;
1987
1993
  getOwnerWindow: () => (Window & typeof globalThis) | null;
1988
1994
  getOwnerDocument: () => Document;
1989
1995
  getComputedStyle: () => CSSStyleDeclaration;
1990
1996
  getTagName: () => string;
1991
- tagName: () => string;
1992
1997
  typeIn: (text: string) => Promise<void>;
1993
- getAttribute: (qualifiedName: string) => string | null;
1994
1998
  getDOMNode: () => Element;
1995
1999
  node: () => Element;
1996
2000
  debug: (maxLength?: number | undefined, options?: {
@@ -1998,9 +2002,8 @@ declare const MenuLocator: {
1998
2002
  } | undefined) => void;
1999
2003
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
2000
2004
  getTextContent: () => string | null;
2001
- getParentNode: () => (Node & ParentNode) | null;
2002
- parent: () => (Node & ParentNode) | null;
2003
- getBoundingClientRect: () => DOMRect;
2005
+ getParentNode: () => ParentNode | null;
2006
+ parent: () => ParentNode | null;
2004
2007
  rect: () => DOMRect;
2005
2008
  hasClass: (classname: string) => boolean;
2006
2009
  containsFocus: () => boolean;
@@ -2012,19 +2015,17 @@ declare const MenuLocator: {
2012
2015
  exists: () => boolean;
2013
2016
  text: () => string | null;
2014
2017
  empty: () => boolean;
2015
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
2016
2018
  descendants: (selector: string) => Element[];
2017
- ancestors: (selector: string) => (Node & ParentNode)[];
2019
+ ancestors: (selector: string) => ParentNode[];
2018
2020
  attribute: (qualifiedName: string) => string | null;
2019
2021
  style: (property: string) => string;
2020
2022
  classNames: () => string[];
2021
- matches: (selector: string | undefined) => boolean;
2022
2023
  checked: () => any;
2023
2024
  selected: () => any;
2024
2025
  readonly: () => any;
2025
- children: (selector: string) => Element[];
2026
- parents: (selector: string) => (Node & ParentNode)[];
2026
+ parents: (selector: string) => ParentNode[];
2027
2027
  } & {
2028
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2028
2029
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2029
2030
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2030
2031
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -2062,7 +2063,6 @@ declare const MenuLocator: {
2062
2063
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2063
2064
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2064
2065
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2065
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2066
2066
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2067
2067
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2068
2068
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -2112,24 +2112,28 @@ declare const MenuLocator: {
2112
2112
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
2113
2113
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
2114
2114
  } & {
2115
+ toString: (maxLength?: number | undefined, options?: {
2116
+ highlight: boolean;
2117
+ } | undefined) => string;
2118
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
2119
+ children: (selector: string) => Element[];
2120
+ title: () => string | null | undefined;
2121
+ id: () => string;
2122
+ tagName: () => string;
2123
+ getAttribute: (qualifiedName: string) => string | null;
2124
+ getBoundingClientRect: () => DOMRect;
2125
+ matches: (selector: string | undefined) => boolean;
2115
2126
  visible: () => boolean;
2116
2127
  value: () => string | null;
2117
2128
  disabled: () => string | null;
2118
2129
  role: () => string | null;
2119
- id: () => string;
2120
2130
  label: () => string | null | undefined;
2121
- title: () => string | null | undefined;
2122
- toString: (maxLength?: number | undefined, options?: {
2123
- highlight: boolean;
2124
- } | undefined) => string;
2125
2131
  getId: () => string;
2126
2132
  getOwnerWindow: () => (Window & typeof globalThis) | null;
2127
2133
  getOwnerDocument: () => Document;
2128
2134
  getComputedStyle: () => CSSStyleDeclaration;
2129
2135
  getTagName: () => string;
2130
- tagName: () => string;
2131
2136
  typeIn: (text: string) => Promise<void>;
2132
- getAttribute: (qualifiedName: string) => string | null;
2133
2137
  getDOMNode: () => Element;
2134
2138
  node: () => Element;
2135
2139
  debug: (maxLength?: number | undefined, options?: {
@@ -2137,9 +2141,8 @@ declare const MenuLocator: {
2137
2141
  } | undefined) => void;
2138
2142
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
2139
2143
  getTextContent: () => string | null;
2140
- getParentNode: () => (Node & ParentNode) | null;
2141
- parent: () => (Node & ParentNode) | null;
2142
- getBoundingClientRect: () => DOMRect;
2144
+ getParentNode: () => ParentNode | null;
2145
+ parent: () => ParentNode | null;
2143
2146
  rect: () => DOMRect;
2144
2147
  hasClass: (classname: string) => boolean;
2145
2148
  containsFocus: () => boolean;
@@ -2151,19 +2154,17 @@ declare const MenuLocator: {
2151
2154
  exists: () => boolean;
2152
2155
  text: () => string | null;
2153
2156
  empty: () => boolean;
2154
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
2155
2157
  descendants: (selector: string) => Element[];
2156
- ancestors: (selector: string) => (Node & ParentNode)[];
2158
+ ancestors: (selector: string) => ParentNode[];
2157
2159
  attribute: (qualifiedName: string) => string | null;
2158
2160
  style: (property: string) => string;
2159
2161
  classNames: () => string[];
2160
- matches: (selector: string | undefined) => boolean;
2161
2162
  checked: () => any;
2162
2163
  selected: () => any;
2163
2164
  readonly: () => any;
2164
- children: (selector: string) => Element[];
2165
- parents: (selector: string) => (Node & ParentNode)[];
2165
+ parents: (selector: string) => ParentNode[];
2166
2166
  } & {
2167
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2167
2168
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2168
2169
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2169
2170
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -2201,7 +2202,6 @@ declare const MenuLocator: {
2201
2202
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2202
2203
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2203
2204
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2204
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2205
2205
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2206
2206
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2207
2207
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -2251,24 +2251,28 @@ declare const MenuLocator: {
2251
2251
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
2252
2252
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
2253
2253
  } & {
2254
+ toString: (maxLength?: number | undefined, options?: {
2255
+ highlight: boolean;
2256
+ } | undefined) => string;
2257
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
2258
+ children: (selector: string) => Element[];
2259
+ title: () => string | null | undefined;
2260
+ id: () => string;
2261
+ tagName: () => string;
2262
+ getAttribute: (qualifiedName: string) => string | null;
2263
+ getBoundingClientRect: () => DOMRect;
2264
+ matches: (selector: string | undefined) => boolean;
2254
2265
  visible: () => boolean;
2255
2266
  value: () => string | null;
2256
2267
  disabled: () => string | null;
2257
2268
  role: () => string | null;
2258
- id: () => string;
2259
2269
  label: () => string | null | undefined;
2260
- title: () => string | null | undefined;
2261
- toString: (maxLength?: number | undefined, options?: {
2262
- highlight: boolean;
2263
- } | undefined) => string;
2264
2270
  getId: () => string;
2265
2271
  getOwnerWindow: () => (Window & typeof globalThis) | null;
2266
2272
  getOwnerDocument: () => Document;
2267
2273
  getComputedStyle: () => CSSStyleDeclaration;
2268
2274
  getTagName: () => string;
2269
- tagName: () => string;
2270
2275
  typeIn: (text: string) => Promise<void>;
2271
- getAttribute: (qualifiedName: string) => string | null;
2272
2276
  getDOMNode: () => Element;
2273
2277
  node: () => Element;
2274
2278
  debug: (maxLength?: number | undefined, options?: {
@@ -2276,9 +2280,8 @@ declare const MenuLocator: {
2276
2280
  } | undefined) => void;
2277
2281
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
2278
2282
  getTextContent: () => string | null;
2279
- getParentNode: () => (Node & ParentNode) | null;
2280
- parent: () => (Node & ParentNode) | null;
2281
- getBoundingClientRect: () => DOMRect;
2283
+ getParentNode: () => ParentNode | null;
2284
+ parent: () => ParentNode | null;
2282
2285
  rect: () => DOMRect;
2283
2286
  hasClass: (classname: string) => boolean;
2284
2287
  containsFocus: () => boolean;
@@ -2290,19 +2293,17 @@ declare const MenuLocator: {
2290
2293
  exists: () => boolean;
2291
2294
  text: () => string | null;
2292
2295
  empty: () => boolean;
2293
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
2294
2296
  descendants: (selector: string) => Element[];
2295
- ancestors: (selector: string) => (Node & ParentNode)[];
2297
+ ancestors: (selector: string) => ParentNode[];
2296
2298
  attribute: (qualifiedName: string) => string | null;
2297
2299
  style: (property: string) => string;
2298
2300
  classNames: () => string[];
2299
- matches: (selector: string | undefined) => boolean;
2300
2301
  checked: () => any;
2301
2302
  selected: () => any;
2302
2303
  readonly: () => any;
2303
- children: (selector: string) => Element[];
2304
- parents: (selector: string) => (Node & ParentNode)[];
2304
+ parents: (selector: string) => ParentNode[];
2305
2305
  } & {
2306
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2306
2307
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2307
2308
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2308
2309
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -2340,7 +2341,6 @@ declare const MenuLocator: {
2340
2341
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2341
2342
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2342
2343
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2343
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2344
2344
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2345
2345
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2346
2346
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -2394,24 +2394,28 @@ declare const MenuLocator: {
2394
2394
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
2395
2395
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
2396
2396
  } & {
2397
+ toString: (maxLength?: number | undefined, options?: {
2398
+ highlight: boolean;
2399
+ } | undefined) => string;
2400
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
2401
+ children: (selector: string) => Element[];
2402
+ title: () => string | null | undefined;
2403
+ id: () => string;
2404
+ tagName: () => string;
2405
+ getAttribute: (qualifiedName: string) => string | null;
2406
+ getBoundingClientRect: () => DOMRect;
2407
+ matches: (selector: string | undefined) => boolean;
2397
2408
  visible: () => boolean;
2398
2409
  value: () => string | null;
2399
2410
  disabled: () => string | null;
2400
2411
  role: () => string | null;
2401
- id: () => string;
2402
2412
  label: () => string | null | undefined;
2403
- title: () => string | null | undefined;
2404
- toString: (maxLength?: number | undefined, options?: {
2405
- highlight: boolean;
2406
- } | undefined) => string;
2407
2413
  getId: () => string;
2408
2414
  getOwnerWindow: () => (Window & typeof globalThis) | null;
2409
2415
  getOwnerDocument: () => Document;
2410
2416
  getComputedStyle: () => CSSStyleDeclaration;
2411
2417
  getTagName: () => string;
2412
- tagName: () => string;
2413
2418
  typeIn: (text: string) => Promise<void>;
2414
- getAttribute: (qualifiedName: string) => string | null;
2415
2419
  getDOMNode: () => Element;
2416
2420
  node: () => Element;
2417
2421
  debug: (maxLength?: number | undefined, options?: {
@@ -2419,9 +2423,8 @@ declare const MenuLocator: {
2419
2423
  } | undefined) => void;
2420
2424
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
2421
2425
  getTextContent: () => string | null;
2422
- getParentNode: () => (Node & ParentNode) | null;
2423
- parent: () => (Node & ParentNode) | null;
2424
- getBoundingClientRect: () => DOMRect;
2426
+ getParentNode: () => ParentNode | null;
2427
+ parent: () => ParentNode | null;
2425
2428
  rect: () => DOMRect;
2426
2429
  hasClass: (classname: string) => boolean;
2427
2430
  containsFocus: () => boolean;
@@ -2433,19 +2436,17 @@ declare const MenuLocator: {
2433
2436
  exists: () => boolean;
2434
2437
  text: () => string | null;
2435
2438
  empty: () => boolean;
2436
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
2437
2439
  descendants: (selector: string) => Element[];
2438
- ancestors: (selector: string) => (Node & ParentNode)[];
2440
+ ancestors: (selector: string) => ParentNode[];
2439
2441
  attribute: (qualifiedName: string) => string | null;
2440
2442
  style: (property: string) => string;
2441
2443
  classNames: () => string[];
2442
- matches: (selector: string | undefined) => boolean;
2443
2444
  checked: () => any;
2444
2445
  selected: () => any;
2445
2446
  readonly: () => any;
2446
- children: (selector: string) => Element[];
2447
- parents: (selector: string) => (Node & ParentNode)[];
2447
+ parents: (selector: string) => ParentNode[];
2448
2448
  } & {
2449
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2449
2450
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2450
2451
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2451
2452
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -2483,7 +2484,6 @@ declare const MenuLocator: {
2483
2484
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2484
2485
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2485
2486
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2486
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2487
2487
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2488
2488
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2489
2489
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -2533,24 +2533,28 @@ declare const MenuLocator: {
2533
2533
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
2534
2534
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
2535
2535
  } & {
2536
+ toString: (maxLength?: number | undefined, options?: {
2537
+ highlight: boolean;
2538
+ } | undefined) => string;
2539
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
2540
+ children: (selector: string) => Element[];
2541
+ title: () => string | null | undefined;
2542
+ id: () => string;
2543
+ tagName: () => string;
2544
+ getAttribute: (qualifiedName: string) => string | null;
2545
+ getBoundingClientRect: () => DOMRect;
2546
+ matches: (selector: string | undefined) => boolean;
2536
2547
  visible: () => boolean;
2537
2548
  value: () => string | null;
2538
2549
  disabled: () => string | null;
2539
2550
  role: () => string | null;
2540
- id: () => string;
2541
2551
  label: () => string | null | undefined;
2542
- title: () => string | null | undefined;
2543
- toString: (maxLength?: number | undefined, options?: {
2544
- highlight: boolean;
2545
- } | undefined) => string;
2546
2552
  getId: () => string;
2547
2553
  getOwnerWindow: () => (Window & typeof globalThis) | null;
2548
2554
  getOwnerDocument: () => Document;
2549
2555
  getComputedStyle: () => CSSStyleDeclaration;
2550
2556
  getTagName: () => string;
2551
- tagName: () => string;
2552
2557
  typeIn: (text: string) => Promise<void>;
2553
- getAttribute: (qualifiedName: string) => string | null;
2554
2558
  getDOMNode: () => Element;
2555
2559
  node: () => Element;
2556
2560
  debug: (maxLength?: number | undefined, options?: {
@@ -2558,9 +2562,8 @@ declare const MenuLocator: {
2558
2562
  } | undefined) => void;
2559
2563
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
2560
2564
  getTextContent: () => string | null;
2561
- getParentNode: () => (Node & ParentNode) | null;
2562
- parent: () => (Node & ParentNode) | null;
2563
- getBoundingClientRect: () => DOMRect;
2565
+ getParentNode: () => ParentNode | null;
2566
+ parent: () => ParentNode | null;
2564
2567
  rect: () => DOMRect;
2565
2568
  hasClass: (classname: string) => boolean;
2566
2569
  containsFocus: () => boolean;
@@ -2572,19 +2575,17 @@ declare const MenuLocator: {
2572
2575
  exists: () => boolean;
2573
2576
  text: () => string | null;
2574
2577
  empty: () => boolean;
2575
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
2576
2578
  descendants: (selector: string) => Element[];
2577
- ancestors: (selector: string) => (Node & ParentNode)[];
2579
+ ancestors: (selector: string) => ParentNode[];
2578
2580
  attribute: (qualifiedName: string) => string | null;
2579
2581
  style: (property: string) => string;
2580
2582
  classNames: () => string[];
2581
- matches: (selector: string | undefined) => boolean;
2582
2583
  checked: () => any;
2583
2584
  selected: () => any;
2584
2585
  readonly: () => any;
2585
- children: (selector: string) => Element[];
2586
- parents: (selector: string) => (Node & ParentNode)[];
2586
+ parents: (selector: string) => ParentNode[];
2587
2587
  } & {
2588
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2588
2589
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2589
2590
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2590
2591
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -2622,7 +2623,6 @@ declare const MenuLocator: {
2622
2623
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2623
2624
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2624
2625
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2625
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2626
2626
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2627
2627
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2628
2628
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -2672,24 +2672,28 @@ declare const MenuLocator: {
2672
2672
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
2673
2673
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
2674
2674
  } & {
2675
+ toString: (maxLength?: number | undefined, options?: {
2676
+ highlight: boolean;
2677
+ } | undefined) => string;
2678
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
2679
+ children: (selector: string) => Element[];
2680
+ title: () => string | null | undefined;
2681
+ id: () => string;
2682
+ tagName: () => string;
2683
+ getAttribute: (qualifiedName: string) => string | null;
2684
+ getBoundingClientRect: () => DOMRect;
2685
+ matches: (selector: string | undefined) => boolean;
2675
2686
  visible: () => boolean;
2676
2687
  value: () => string | null;
2677
2688
  disabled: () => string | null;
2678
2689
  role: () => string | null;
2679
- id: () => string;
2680
2690
  label: () => string | null | undefined;
2681
- title: () => string | null | undefined;
2682
- toString: (maxLength?: number | undefined, options?: {
2683
- highlight: boolean;
2684
- } | undefined) => string;
2685
2691
  getId: () => string;
2686
2692
  getOwnerWindow: () => (Window & typeof globalThis) | null;
2687
2693
  getOwnerDocument: () => Document;
2688
2694
  getComputedStyle: () => CSSStyleDeclaration;
2689
2695
  getTagName: () => string;
2690
- tagName: () => string;
2691
2696
  typeIn: (text: string) => Promise<void>;
2692
- getAttribute: (qualifiedName: string) => string | null;
2693
2697
  getDOMNode: () => Element;
2694
2698
  node: () => Element;
2695
2699
  debug: (maxLength?: number | undefined, options?: {
@@ -2697,9 +2701,8 @@ declare const MenuLocator: {
2697
2701
  } | undefined) => void;
2698
2702
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
2699
2703
  getTextContent: () => string | null;
2700
- getParentNode: () => (Node & ParentNode) | null;
2701
- parent: () => (Node & ParentNode) | null;
2702
- getBoundingClientRect: () => DOMRect;
2704
+ getParentNode: () => ParentNode | null;
2705
+ parent: () => ParentNode | null;
2703
2706
  rect: () => DOMRect;
2704
2707
  hasClass: (classname: string) => boolean;
2705
2708
  containsFocus: () => boolean;
@@ -2711,19 +2714,17 @@ declare const MenuLocator: {
2711
2714
  exists: () => boolean;
2712
2715
  text: () => string | null;
2713
2716
  empty: () => boolean;
2714
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
2715
2717
  descendants: (selector: string) => Element[];
2716
- ancestors: (selector: string) => (Node & ParentNode)[];
2718
+ ancestors: (selector: string) => ParentNode[];
2717
2719
  attribute: (qualifiedName: string) => string | null;
2718
2720
  style: (property: string) => string;
2719
2721
  classNames: () => string[];
2720
- matches: (selector: string | undefined) => boolean;
2721
2722
  checked: () => any;
2722
2723
  selected: () => any;
2723
2724
  readonly: () => any;
2724
- children: (selector: string) => Element[];
2725
- parents: (selector: string) => (Node & ParentNode)[];
2725
+ parents: (selector: string) => ParentNode[];
2726
2726
  } & {
2727
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2727
2728
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2728
2729
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2729
2730
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -2761,7 +2762,6 @@ declare const MenuLocator: {
2761
2762
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2762
2763
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2763
2764
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2764
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2765
2765
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2766
2766
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2767
2767
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -2811,24 +2811,28 @@ declare const MenuLocator: {
2811
2811
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
2812
2812
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
2813
2813
  } & {
2814
+ toString: (maxLength?: number | undefined, options?: {
2815
+ highlight: boolean;
2816
+ } | undefined) => string;
2817
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
2818
+ children: (selector: string) => Element[];
2819
+ title: () => string | null | undefined;
2820
+ id: () => string;
2821
+ tagName: () => string;
2822
+ getAttribute: (qualifiedName: string) => string | null;
2823
+ getBoundingClientRect: () => DOMRect;
2824
+ matches: (selector: string | undefined) => boolean;
2814
2825
  visible: () => boolean;
2815
2826
  value: () => string | null;
2816
2827
  disabled: () => string | null;
2817
2828
  role: () => string | null;
2818
- id: () => string;
2819
2829
  label: () => string | null | undefined;
2820
- title: () => string | null | undefined;
2821
- toString: (maxLength?: number | undefined, options?: {
2822
- highlight: boolean;
2823
- } | undefined) => string;
2824
2830
  getId: () => string;
2825
2831
  getOwnerWindow: () => (Window & typeof globalThis) | null;
2826
2832
  getOwnerDocument: () => Document;
2827
2833
  getComputedStyle: () => CSSStyleDeclaration;
2828
2834
  getTagName: () => string;
2829
- tagName: () => string;
2830
2835
  typeIn: (text: string) => Promise<void>;
2831
- getAttribute: (qualifiedName: string) => string | null;
2832
2836
  getDOMNode: () => Element;
2833
2837
  node: () => Element;
2834
2838
  debug: (maxLength?: number | undefined, options?: {
@@ -2836,9 +2840,8 @@ declare const MenuLocator: {
2836
2840
  } | undefined) => void;
2837
2841
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
2838
2842
  getTextContent: () => string | null;
2839
- getParentNode: () => (Node & ParentNode) | null;
2840
- parent: () => (Node & ParentNode) | null;
2841
- getBoundingClientRect: () => DOMRect;
2843
+ getParentNode: () => ParentNode | null;
2844
+ parent: () => ParentNode | null;
2842
2845
  rect: () => DOMRect;
2843
2846
  hasClass: (classname: string) => boolean;
2844
2847
  containsFocus: () => boolean;
@@ -2850,19 +2853,17 @@ declare const MenuLocator: {
2850
2853
  exists: () => boolean;
2851
2854
  text: () => string | null;
2852
2855
  empty: () => boolean;
2853
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
2854
2856
  descendants: (selector: string) => Element[];
2855
- ancestors: (selector: string) => (Node & ParentNode)[];
2857
+ ancestors: (selector: string) => ParentNode[];
2856
2858
  attribute: (qualifiedName: string) => string | null;
2857
2859
  style: (property: string) => string;
2858
2860
  classNames: () => string[];
2859
- matches: (selector: string | undefined) => boolean;
2860
2861
  checked: () => any;
2861
2862
  selected: () => any;
2862
2863
  readonly: () => any;
2863
- children: (selector: string) => Element[];
2864
- parents: (selector: string) => (Node & ParentNode)[];
2864
+ parents: (selector: string) => ParentNode[];
2865
2865
  } & {
2866
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2866
2867
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2867
2868
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2868
2869
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -2900,7 +2901,6 @@ declare const MenuLocator: {
2900
2901
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2901
2902
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2902
2903
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2903
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2904
2904
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2905
2905
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
2906
2906
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -2950,24 +2950,28 @@ declare const MenuLocator: {
2950
2950
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
2951
2951
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
2952
2952
  } & {
2953
+ toString: (maxLength?: number | undefined, options?: {
2954
+ highlight: boolean;
2955
+ } | undefined) => string;
2956
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
2957
+ children: (selector: string) => Element[];
2958
+ title: () => string | null | undefined;
2959
+ id: () => string;
2960
+ tagName: () => string;
2961
+ getAttribute: (qualifiedName: string) => string | null;
2962
+ getBoundingClientRect: () => DOMRect;
2963
+ matches: (selector: string | undefined) => boolean;
2953
2964
  visible: () => boolean;
2954
2965
  value: () => string | null;
2955
2966
  disabled: () => string | null;
2956
2967
  role: () => string | null;
2957
- id: () => string;
2958
2968
  label: () => string | null | undefined;
2959
- title: () => string | null | undefined;
2960
- toString: (maxLength?: number | undefined, options?: {
2961
- highlight: boolean;
2962
- } | undefined) => string;
2963
2969
  getId: () => string;
2964
2970
  getOwnerWindow: () => (Window & typeof globalThis) | null;
2965
2971
  getOwnerDocument: () => Document;
2966
2972
  getComputedStyle: () => CSSStyleDeclaration;
2967
2973
  getTagName: () => string;
2968
- tagName: () => string;
2969
2974
  typeIn: (text: string) => Promise<void>;
2970
- getAttribute: (qualifiedName: string) => string | null;
2971
2975
  getDOMNode: () => Element;
2972
2976
  node: () => Element;
2973
2977
  debug: (maxLength?: number | undefined, options?: {
@@ -2975,9 +2979,8 @@ declare const MenuLocator: {
2975
2979
  } | undefined) => void;
2976
2980
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
2977
2981
  getTextContent: () => string | null;
2978
- getParentNode: () => (Node & ParentNode) | null;
2979
- parent: () => (Node & ParentNode) | null;
2980
- getBoundingClientRect: () => DOMRect;
2982
+ getParentNode: () => ParentNode | null;
2983
+ parent: () => ParentNode | null;
2981
2984
  rect: () => DOMRect;
2982
2985
  hasClass: (classname: string) => boolean;
2983
2986
  containsFocus: () => boolean;
@@ -2989,19 +2992,17 @@ declare const MenuLocator: {
2989
2992
  exists: () => boolean;
2990
2993
  text: () => string | null;
2991
2994
  empty: () => boolean;
2992
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
2993
2995
  descendants: (selector: string) => Element[];
2994
- ancestors: (selector: string) => (Node & ParentNode)[];
2996
+ ancestors: (selector: string) => ParentNode[];
2995
2997
  attribute: (qualifiedName: string) => string | null;
2996
2998
  style: (property: string) => string;
2997
2999
  classNames: () => string[];
2998
- matches: (selector: string | undefined) => boolean;
2999
3000
  checked: () => any;
3000
3001
  selected: () => any;
3001
3002
  readonly: () => any;
3002
- children: (selector: string) => Element[];
3003
- parents: (selector: string) => (Node & ParentNode)[];
3003
+ parents: (selector: string) => ParentNode[];
3004
3004
  } & {
3005
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3005
3006
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3006
3007
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3007
3008
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -3039,7 +3040,6 @@ declare const MenuLocator: {
3039
3040
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3040
3041
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3041
3042
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3042
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3043
3043
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3044
3044
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3045
3045
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -3089,24 +3089,28 @@ declare const MenuLocator: {
3089
3089
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
3090
3090
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
3091
3091
  } & {
3092
+ toString: (maxLength?: number | undefined, options?: {
3093
+ highlight: boolean;
3094
+ } | undefined) => string;
3095
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
3096
+ children: (selector: string) => Element[];
3097
+ title: () => string | null | undefined;
3098
+ id: () => string;
3099
+ tagName: () => string;
3100
+ getAttribute: (qualifiedName: string) => string | null;
3101
+ getBoundingClientRect: () => DOMRect;
3102
+ matches: (selector: string | undefined) => boolean;
3092
3103
  visible: () => boolean;
3093
3104
  value: () => string | null;
3094
3105
  disabled: () => string | null;
3095
3106
  role: () => string | null;
3096
- id: () => string;
3097
3107
  label: () => string | null | undefined;
3098
- title: () => string | null | undefined;
3099
- toString: (maxLength?: number | undefined, options?: {
3100
- highlight: boolean;
3101
- } | undefined) => string;
3102
3108
  getId: () => string;
3103
3109
  getOwnerWindow: () => (Window & typeof globalThis) | null;
3104
3110
  getOwnerDocument: () => Document;
3105
3111
  getComputedStyle: () => CSSStyleDeclaration;
3106
3112
  getTagName: () => string;
3107
- tagName: () => string;
3108
3113
  typeIn: (text: string) => Promise<void>;
3109
- getAttribute: (qualifiedName: string) => string | null;
3110
3114
  getDOMNode: () => Element;
3111
3115
  node: () => Element;
3112
3116
  debug: (maxLength?: number | undefined, options?: {
@@ -3114,9 +3118,8 @@ declare const MenuLocator: {
3114
3118
  } | undefined) => void;
3115
3119
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
3116
3120
  getTextContent: () => string | null;
3117
- getParentNode: () => (Node & ParentNode) | null;
3118
- parent: () => (Node & ParentNode) | null;
3119
- getBoundingClientRect: () => DOMRect;
3121
+ getParentNode: () => ParentNode | null;
3122
+ parent: () => ParentNode | null;
3120
3123
  rect: () => DOMRect;
3121
3124
  hasClass: (classname: string) => boolean;
3122
3125
  containsFocus: () => boolean;
@@ -3128,19 +3131,17 @@ declare const MenuLocator: {
3128
3131
  exists: () => boolean;
3129
3132
  text: () => string | null;
3130
3133
  empty: () => boolean;
3131
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
3132
3134
  descendants: (selector: string) => Element[];
3133
- ancestors: (selector: string) => (Node & ParentNode)[];
3135
+ ancestors: (selector: string) => ParentNode[];
3134
3136
  attribute: (qualifiedName: string) => string | null;
3135
3137
  style: (property: string) => string;
3136
3138
  classNames: () => string[];
3137
- matches: (selector: string | undefined) => boolean;
3138
3139
  checked: () => any;
3139
3140
  selected: () => any;
3140
3141
  readonly: () => any;
3141
- children: (selector: string) => Element[];
3142
- parents: (selector: string) => (Node & ParentNode)[];
3142
+ parents: (selector: string) => ParentNode[];
3143
3143
  } & {
3144
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3144
3145
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3145
3146
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3146
3147
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -3178,7 +3179,6 @@ declare const MenuLocator: {
3178
3179
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3179
3180
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3180
3181
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3181
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3182
3182
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3183
3183
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3184
3184
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -3229,24 +3229,28 @@ declare const MenuLocator: {
3229
3229
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
3230
3230
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
3231
3231
  } & {
3232
+ toString: (maxLength?: number | undefined, options?: {
3233
+ highlight: boolean;
3234
+ } | undefined) => string;
3235
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
3236
+ children: (selector: string) => Element[];
3237
+ title: () => string | null | undefined;
3238
+ id: () => string;
3239
+ tagName: () => string;
3240
+ getAttribute: (qualifiedName: string) => string | null;
3241
+ getBoundingClientRect: () => DOMRect;
3242
+ matches: (selector: string | undefined) => boolean;
3232
3243
  visible: () => boolean;
3233
3244
  value: () => string | null;
3234
3245
  disabled: () => string | null;
3235
3246
  role: () => string | null;
3236
- id: () => string;
3237
3247
  label: () => string | null | undefined;
3238
- title: () => string | null | undefined;
3239
- toString: (maxLength?: number | undefined, options?: {
3240
- highlight: boolean;
3241
- } | undefined) => string;
3242
3248
  getId: () => string;
3243
3249
  getOwnerWindow: () => (Window & typeof globalThis) | null;
3244
3250
  getOwnerDocument: () => Document;
3245
3251
  getComputedStyle: () => CSSStyleDeclaration;
3246
3252
  getTagName: () => string;
3247
- tagName: () => string;
3248
3253
  typeIn: (text: string) => Promise<void>;
3249
- getAttribute: (qualifiedName: string) => string | null;
3250
3254
  getDOMNode: () => Element;
3251
3255
  node: () => Element;
3252
3256
  debug: (maxLength?: number | undefined, options?: {
@@ -3254,9 +3258,8 @@ declare const MenuLocator: {
3254
3258
  } | undefined) => void;
3255
3259
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
3256
3260
  getTextContent: () => string | null;
3257
- getParentNode: () => (Node & ParentNode) | null;
3258
- parent: () => (Node & ParentNode) | null;
3259
- getBoundingClientRect: () => DOMRect;
3261
+ getParentNode: () => ParentNode | null;
3262
+ parent: () => ParentNode | null;
3260
3263
  rect: () => DOMRect;
3261
3264
  hasClass: (classname: string) => boolean;
3262
3265
  containsFocus: () => boolean;
@@ -3268,19 +3271,17 @@ declare const MenuLocator: {
3268
3271
  exists: () => boolean;
3269
3272
  text: () => string | null;
3270
3273
  empty: () => boolean;
3271
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
3272
3274
  descendants: (selector: string) => Element[];
3273
- ancestors: (selector: string) => (Node & ParentNode)[];
3275
+ ancestors: (selector: string) => ParentNode[];
3274
3276
  attribute: (qualifiedName: string) => string | null;
3275
3277
  style: (property: string) => string;
3276
3278
  classNames: () => string[];
3277
- matches: (selector: string | undefined) => boolean;
3278
3279
  checked: () => any;
3279
3280
  selected: () => any;
3280
3281
  readonly: () => any;
3281
- children: (selector: string) => Element[];
3282
- parents: (selector: string) => (Node & ParentNode)[];
3282
+ parents: (selector: string) => ParentNode[];
3283
3283
  } & {
3284
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3284
3285
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3285
3286
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3286
3287
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -3318,7 +3319,6 @@ declare const MenuLocator: {
3318
3319
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3319
3320
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3320
3321
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3321
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3322
3322
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3323
3323
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3324
3324
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -3368,24 +3368,28 @@ declare const MenuLocator: {
3368
3368
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
3369
3369
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
3370
3370
  } & {
3371
+ toString: (maxLength?: number | undefined, options?: {
3372
+ highlight: boolean;
3373
+ } | undefined) => string;
3374
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
3375
+ children: (selector: string) => Element[];
3376
+ title: () => string | null | undefined;
3377
+ id: () => string;
3378
+ tagName: () => string;
3379
+ getAttribute: (qualifiedName: string) => string | null;
3380
+ getBoundingClientRect: () => DOMRect;
3381
+ matches: (selector: string | undefined) => boolean;
3371
3382
  visible: () => boolean;
3372
3383
  value: () => string | null;
3373
3384
  disabled: () => string | null;
3374
3385
  role: () => string | null;
3375
- id: () => string;
3376
3386
  label: () => string | null | undefined;
3377
- title: () => string | null | undefined;
3378
- toString: (maxLength?: number | undefined, options?: {
3379
- highlight: boolean;
3380
- } | undefined) => string;
3381
3387
  getId: () => string;
3382
3388
  getOwnerWindow: () => (Window & typeof globalThis) | null;
3383
3389
  getOwnerDocument: () => Document;
3384
3390
  getComputedStyle: () => CSSStyleDeclaration;
3385
3391
  getTagName: () => string;
3386
- tagName: () => string;
3387
3392
  typeIn: (text: string) => Promise<void>;
3388
- getAttribute: (qualifiedName: string) => string | null;
3389
3393
  getDOMNode: () => Element;
3390
3394
  node: () => Element;
3391
3395
  debug: (maxLength?: number | undefined, options?: {
@@ -3393,9 +3397,8 @@ declare const MenuLocator: {
3393
3397
  } | undefined) => void;
3394
3398
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
3395
3399
  getTextContent: () => string | null;
3396
- getParentNode: () => (Node & ParentNode) | null;
3397
- parent: () => (Node & ParentNode) | null;
3398
- getBoundingClientRect: () => DOMRect;
3400
+ getParentNode: () => ParentNode | null;
3401
+ parent: () => ParentNode | null;
3399
3402
  rect: () => DOMRect;
3400
3403
  hasClass: (classname: string) => boolean;
3401
3404
  containsFocus: () => boolean;
@@ -3407,19 +3410,17 @@ declare const MenuLocator: {
3407
3410
  exists: () => boolean;
3408
3411
  text: () => string | null;
3409
3412
  empty: () => boolean;
3410
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
3411
3413
  descendants: (selector: string) => Element[];
3412
- ancestors: (selector: string) => (Node & ParentNode)[];
3414
+ ancestors: (selector: string) => ParentNode[];
3413
3415
  attribute: (qualifiedName: string) => string | null;
3414
3416
  style: (property: string) => string;
3415
3417
  classNames: () => string[];
3416
- matches: (selector: string | undefined) => boolean;
3417
3418
  checked: () => any;
3418
3419
  selected: () => any;
3419
3420
  readonly: () => any;
3420
- children: (selector: string) => Element[];
3421
- parents: (selector: string) => (Node & ParentNode)[];
3421
+ parents: (selector: string) => ParentNode[];
3422
3422
  } & {
3423
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3423
3424
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3424
3425
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3425
3426
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -3457,7 +3458,6 @@ declare const MenuLocator: {
3457
3458
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3458
3459
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3459
3460
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3460
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3461
3461
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3462
3462
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3463
3463
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -3507,24 +3507,28 @@ declare const MenuLocator: {
3507
3507
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
3508
3508
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
3509
3509
  } & {
3510
+ toString: (maxLength?: number | undefined, options?: {
3511
+ highlight: boolean;
3512
+ } | undefined) => string;
3513
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
3514
+ children: (selector: string) => Element[];
3515
+ title: () => string | null | undefined;
3516
+ id: () => string;
3517
+ tagName: () => string;
3518
+ getAttribute: (qualifiedName: string) => string | null;
3519
+ getBoundingClientRect: () => DOMRect;
3520
+ matches: (selector: string | undefined) => boolean;
3510
3521
  visible: () => boolean;
3511
3522
  value: () => string | null;
3512
3523
  disabled: () => string | null;
3513
3524
  role: () => string | null;
3514
- id: () => string;
3515
3525
  label: () => string | null | undefined;
3516
- title: () => string | null | undefined;
3517
- toString: (maxLength?: number | undefined, options?: {
3518
- highlight: boolean;
3519
- } | undefined) => string;
3520
3526
  getId: () => string;
3521
3527
  getOwnerWindow: () => (Window & typeof globalThis) | null;
3522
3528
  getOwnerDocument: () => Document;
3523
3529
  getComputedStyle: () => CSSStyleDeclaration;
3524
3530
  getTagName: () => string;
3525
- tagName: () => string;
3526
3531
  typeIn: (text: string) => Promise<void>;
3527
- getAttribute: (qualifiedName: string) => string | null;
3528
3532
  getDOMNode: () => Element;
3529
3533
  node: () => Element;
3530
3534
  debug: (maxLength?: number | undefined, options?: {
@@ -3532,9 +3536,8 @@ declare const MenuLocator: {
3532
3536
  } | undefined) => void;
3533
3537
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
3534
3538
  getTextContent: () => string | null;
3535
- getParentNode: () => (Node & ParentNode) | null;
3536
- parent: () => (Node & ParentNode) | null;
3537
- getBoundingClientRect: () => DOMRect;
3539
+ getParentNode: () => ParentNode | null;
3540
+ parent: () => ParentNode | null;
3538
3541
  rect: () => DOMRect;
3539
3542
  hasClass: (classname: string) => boolean;
3540
3543
  containsFocus: () => boolean;
@@ -3546,19 +3549,17 @@ declare const MenuLocator: {
3546
3549
  exists: () => boolean;
3547
3550
  text: () => string | null;
3548
3551
  empty: () => boolean;
3549
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
3550
3552
  descendants: (selector: string) => Element[];
3551
- ancestors: (selector: string) => (Node & ParentNode)[];
3553
+ ancestors: (selector: string) => ParentNode[];
3552
3554
  attribute: (qualifiedName: string) => string | null;
3553
3555
  style: (property: string) => string;
3554
3556
  classNames: () => string[];
3555
- matches: (selector: string | undefined) => boolean;
3556
3557
  checked: () => any;
3557
3558
  selected: () => any;
3558
3559
  readonly: () => any;
3559
- children: (selector: string) => Element[];
3560
- parents: (selector: string) => (Node & ParentNode)[];
3560
+ parents: (selector: string) => ParentNode[];
3561
3561
  } & {
3562
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3562
3563
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3563
3564
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3564
3565
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -3596,7 +3597,6 @@ declare const MenuLocator: {
3596
3597
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3597
3598
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3598
3599
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3599
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3600
3600
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3601
3601
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3602
3602
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -3650,24 +3650,28 @@ declare const MenuLocator: {
3650
3650
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
3651
3651
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
3652
3652
  } & {
3653
+ toString: (maxLength?: number | undefined, options?: {
3654
+ highlight: boolean;
3655
+ } | undefined) => string;
3656
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
3657
+ children: (selector: string) => Element[];
3658
+ title: () => string | null | undefined;
3659
+ id: () => string;
3660
+ tagName: () => string;
3661
+ getAttribute: (qualifiedName: string) => string | null;
3662
+ getBoundingClientRect: () => DOMRect;
3663
+ matches: (selector: string | undefined) => boolean;
3653
3664
  visible: () => boolean;
3654
3665
  value: () => string | null;
3655
3666
  disabled: () => string | null;
3656
3667
  role: () => string | null;
3657
- id: () => string;
3658
3668
  label: () => string | null | undefined;
3659
- title: () => string | null | undefined;
3660
- toString: (maxLength?: number | undefined, options?: {
3661
- highlight: boolean;
3662
- } | undefined) => string;
3663
3669
  getId: () => string;
3664
3670
  getOwnerWindow: () => (Window & typeof globalThis) | null;
3665
3671
  getOwnerDocument: () => Document;
3666
3672
  getComputedStyle: () => CSSStyleDeclaration;
3667
3673
  getTagName: () => string;
3668
- tagName: () => string;
3669
3674
  typeIn: (text: string) => Promise<void>;
3670
- getAttribute: (qualifiedName: string) => string | null;
3671
3675
  getDOMNode: () => Element;
3672
3676
  node: () => Element;
3673
3677
  debug: (maxLength?: number | undefined, options?: {
@@ -3675,9 +3679,8 @@ declare const MenuLocator: {
3675
3679
  } | undefined) => void;
3676
3680
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
3677
3681
  getTextContent: () => string | null;
3678
- getParentNode: () => (Node & ParentNode) | null;
3679
- parent: () => (Node & ParentNode) | null;
3680
- getBoundingClientRect: () => DOMRect;
3682
+ getParentNode: () => ParentNode | null;
3683
+ parent: () => ParentNode | null;
3681
3684
  rect: () => DOMRect;
3682
3685
  hasClass: (classname: string) => boolean;
3683
3686
  containsFocus: () => boolean;
@@ -3689,19 +3692,17 @@ declare const MenuLocator: {
3689
3692
  exists: () => boolean;
3690
3693
  text: () => string | null;
3691
3694
  empty: () => boolean;
3692
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
3693
3695
  descendants: (selector: string) => Element[];
3694
- ancestors: (selector: string) => (Node & ParentNode)[];
3696
+ ancestors: (selector: string) => ParentNode[];
3695
3697
  attribute: (qualifiedName: string) => string | null;
3696
3698
  style: (property: string) => string;
3697
3699
  classNames: () => string[];
3698
- matches: (selector: string | undefined) => boolean;
3699
3700
  checked: () => any;
3700
3701
  selected: () => any;
3701
3702
  readonly: () => any;
3702
- children: (selector: string) => Element[];
3703
- parents: (selector: string) => (Node & ParentNode)[];
3703
+ parents: (selector: string) => ParentNode[];
3704
3704
  } & {
3705
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3705
3706
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3706
3707
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3707
3708
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -3739,7 +3740,6 @@ declare const MenuLocator: {
3739
3740
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3740
3741
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3741
3742
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3742
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3743
3743
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3744
3744
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3745
3745
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -3789,24 +3789,28 @@ declare const MenuLocator: {
3789
3789
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
3790
3790
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
3791
3791
  } & {
3792
+ toString: (maxLength?: number | undefined, options?: {
3793
+ highlight: boolean;
3794
+ } | undefined) => string;
3795
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
3796
+ children: (selector: string) => Element[];
3797
+ title: () => string | null | undefined;
3798
+ id: () => string;
3799
+ tagName: () => string;
3800
+ getAttribute: (qualifiedName: string) => string | null;
3801
+ getBoundingClientRect: () => DOMRect;
3802
+ matches: (selector: string | undefined) => boolean;
3792
3803
  visible: () => boolean;
3793
3804
  value: () => string | null;
3794
3805
  disabled: () => string | null;
3795
3806
  role: () => string | null;
3796
- id: () => string;
3797
3807
  label: () => string | null | undefined;
3798
- title: () => string | null | undefined;
3799
- toString: (maxLength?: number | undefined, options?: {
3800
- highlight: boolean;
3801
- } | undefined) => string;
3802
3808
  getId: () => string;
3803
3809
  getOwnerWindow: () => (Window & typeof globalThis) | null;
3804
3810
  getOwnerDocument: () => Document;
3805
3811
  getComputedStyle: () => CSSStyleDeclaration;
3806
3812
  getTagName: () => string;
3807
- tagName: () => string;
3808
3813
  typeIn: (text: string) => Promise<void>;
3809
- getAttribute: (qualifiedName: string) => string | null;
3810
3814
  getDOMNode: () => Element;
3811
3815
  node: () => Element;
3812
3816
  debug: (maxLength?: number | undefined, options?: {
@@ -3814,9 +3818,8 @@ declare const MenuLocator: {
3814
3818
  } | undefined) => void;
3815
3819
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
3816
3820
  getTextContent: () => string | null;
3817
- getParentNode: () => (Node & ParentNode) | null;
3818
- parent: () => (Node & ParentNode) | null;
3819
- getBoundingClientRect: () => DOMRect;
3821
+ getParentNode: () => ParentNode | null;
3822
+ parent: () => ParentNode | null;
3820
3823
  rect: () => DOMRect;
3821
3824
  hasClass: (classname: string) => boolean;
3822
3825
  containsFocus: () => boolean;
@@ -3828,19 +3831,17 @@ declare const MenuLocator: {
3828
3831
  exists: () => boolean;
3829
3832
  text: () => string | null;
3830
3833
  empty: () => boolean;
3831
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
3832
3834
  descendants: (selector: string) => Element[];
3833
- ancestors: (selector: string) => (Node & ParentNode)[];
3835
+ ancestors: (selector: string) => ParentNode[];
3834
3836
  attribute: (qualifiedName: string) => string | null;
3835
3837
  style: (property: string) => string;
3836
3838
  classNames: () => string[];
3837
- matches: (selector: string | undefined) => boolean;
3838
3839
  checked: () => any;
3839
3840
  selected: () => any;
3840
3841
  readonly: () => any;
3841
- children: (selector: string) => Element[];
3842
- parents: (selector: string) => (Node & ParentNode)[];
3842
+ parents: (selector: string) => ParentNode[];
3843
3843
  } & {
3844
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3844
3845
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3845
3846
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3846
3847
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -3878,7 +3879,6 @@ declare const MenuLocator: {
3878
3879
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3879
3880
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3880
3881
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3881
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3882
3882
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3883
3883
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3884
3884
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -3928,24 +3928,28 @@ declare const MenuLocator: {
3928
3928
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
3929
3929
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
3930
3930
  } & {
3931
+ toString: (maxLength?: number | undefined, options?: {
3932
+ highlight: boolean;
3933
+ } | undefined) => string;
3934
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
3935
+ children: (selector: string) => Element[];
3936
+ title: () => string | null | undefined;
3937
+ id: () => string;
3938
+ tagName: () => string;
3939
+ getAttribute: (qualifiedName: string) => string | null;
3940
+ getBoundingClientRect: () => DOMRect;
3941
+ matches: (selector: string | undefined) => boolean;
3931
3942
  visible: () => boolean;
3932
3943
  value: () => string | null;
3933
3944
  disabled: () => string | null;
3934
3945
  role: () => string | null;
3935
- id: () => string;
3936
3946
  label: () => string | null | undefined;
3937
- title: () => string | null | undefined;
3938
- toString: (maxLength?: number | undefined, options?: {
3939
- highlight: boolean;
3940
- } | undefined) => string;
3941
3947
  getId: () => string;
3942
3948
  getOwnerWindow: () => (Window & typeof globalThis) | null;
3943
3949
  getOwnerDocument: () => Document;
3944
3950
  getComputedStyle: () => CSSStyleDeclaration;
3945
3951
  getTagName: () => string;
3946
- tagName: () => string;
3947
3952
  typeIn: (text: string) => Promise<void>;
3948
- getAttribute: (qualifiedName: string) => string | null;
3949
3953
  getDOMNode: () => Element;
3950
3954
  node: () => Element;
3951
3955
  debug: (maxLength?: number | undefined, options?: {
@@ -3953,9 +3957,8 @@ declare const MenuLocator: {
3953
3957
  } | undefined) => void;
3954
3958
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
3955
3959
  getTextContent: () => string | null;
3956
- getParentNode: () => (Node & ParentNode) | null;
3957
- parent: () => (Node & ParentNode) | null;
3958
- getBoundingClientRect: () => DOMRect;
3960
+ getParentNode: () => ParentNode | null;
3961
+ parent: () => ParentNode | null;
3959
3962
  rect: () => DOMRect;
3960
3963
  hasClass: (classname: string) => boolean;
3961
3964
  containsFocus: () => boolean;
@@ -3967,19 +3970,17 @@ declare const MenuLocator: {
3967
3970
  exists: () => boolean;
3968
3971
  text: () => string | null;
3969
3972
  empty: () => boolean;
3970
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
3971
3973
  descendants: (selector: string) => Element[];
3972
- ancestors: (selector: string) => (Node & ParentNode)[];
3974
+ ancestors: (selector: string) => ParentNode[];
3973
3975
  attribute: (qualifiedName: string) => string | null;
3974
3976
  style: (property: string) => string;
3975
3977
  classNames: () => string[];
3976
- matches: (selector: string | undefined) => boolean;
3977
3978
  checked: () => any;
3978
3979
  selected: () => any;
3979
3980
  readonly: () => any;
3980
- children: (selector: string) => Element[];
3981
- parents: (selector: string) => (Node & ParentNode)[];
3981
+ parents: (selector: string) => ParentNode[];
3982
3982
  } & {
3983
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3983
3984
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3984
3985
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
3985
3986
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -4017,7 +4018,6 @@ declare const MenuLocator: {
4017
4018
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4018
4019
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4019
4020
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4020
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4021
4021
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4022
4022
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4023
4023
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -4067,24 +4067,28 @@ declare const MenuLocator: {
4067
4067
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
4068
4068
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
4069
4069
  } & {
4070
+ toString: (maxLength?: number | undefined, options?: {
4071
+ highlight: boolean;
4072
+ } | undefined) => string;
4073
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
4074
+ children: (selector: string) => Element[];
4075
+ title: () => string | null | undefined;
4076
+ id: () => string;
4077
+ tagName: () => string;
4078
+ getAttribute: (qualifiedName: string) => string | null;
4079
+ getBoundingClientRect: () => DOMRect;
4080
+ matches: (selector: string | undefined) => boolean;
4070
4081
  visible: () => boolean;
4071
4082
  value: () => string | null;
4072
4083
  disabled: () => string | null;
4073
4084
  role: () => string | null;
4074
- id: () => string;
4075
4085
  label: () => string | null | undefined;
4076
- title: () => string | null | undefined;
4077
- toString: (maxLength?: number | undefined, options?: {
4078
- highlight: boolean;
4079
- } | undefined) => string;
4080
4086
  getId: () => string;
4081
4087
  getOwnerWindow: () => (Window & typeof globalThis) | null;
4082
4088
  getOwnerDocument: () => Document;
4083
4089
  getComputedStyle: () => CSSStyleDeclaration;
4084
4090
  getTagName: () => string;
4085
- tagName: () => string;
4086
4091
  typeIn: (text: string) => Promise<void>;
4087
- getAttribute: (qualifiedName: string) => string | null;
4088
4092
  getDOMNode: () => Element;
4089
4093
  node: () => Element;
4090
4094
  debug: (maxLength?: number | undefined, options?: {
@@ -4092,9 +4096,8 @@ declare const MenuLocator: {
4092
4096
  } | undefined) => void;
4093
4097
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
4094
4098
  getTextContent: () => string | null;
4095
- getParentNode: () => (Node & ParentNode) | null;
4096
- parent: () => (Node & ParentNode) | null;
4097
- getBoundingClientRect: () => DOMRect;
4099
+ getParentNode: () => ParentNode | null;
4100
+ parent: () => ParentNode | null;
4098
4101
  rect: () => DOMRect;
4099
4102
  hasClass: (classname: string) => boolean;
4100
4103
  containsFocus: () => boolean;
@@ -4106,19 +4109,17 @@ declare const MenuLocator: {
4106
4109
  exists: () => boolean;
4107
4110
  text: () => string | null;
4108
4111
  empty: () => boolean;
4109
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
4110
4112
  descendants: (selector: string) => Element[];
4111
- ancestors: (selector: string) => (Node & ParentNode)[];
4113
+ ancestors: (selector: string) => ParentNode[];
4112
4114
  attribute: (qualifiedName: string) => string | null;
4113
4115
  style: (property: string) => string;
4114
4116
  classNames: () => string[];
4115
- matches: (selector: string | undefined) => boolean;
4116
4117
  checked: () => any;
4117
4118
  selected: () => any;
4118
4119
  readonly: () => any;
4119
- children: (selector: string) => Element[];
4120
- parents: (selector: string) => (Node & ParentNode)[];
4120
+ parents: (selector: string) => ParentNode[];
4121
4121
  } & {
4122
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4122
4123
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4123
4124
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4124
4125
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -4156,7 +4157,6 @@ declare const MenuLocator: {
4156
4157
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4157
4158
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4158
4159
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4159
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4160
4160
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4161
4161
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4162
4162
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -4206,24 +4206,28 @@ declare const MenuLocator: {
4206
4206
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
4207
4207
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
4208
4208
  } & {
4209
+ toString: (maxLength?: number | undefined, options?: {
4210
+ highlight: boolean;
4211
+ } | undefined) => string;
4212
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
4213
+ children: (selector: string) => Element[];
4214
+ title: () => string | null | undefined;
4215
+ id: () => string;
4216
+ tagName: () => string;
4217
+ getAttribute: (qualifiedName: string) => string | null;
4218
+ getBoundingClientRect: () => DOMRect;
4219
+ matches: (selector: string | undefined) => boolean;
4209
4220
  visible: () => boolean;
4210
4221
  value: () => string | null;
4211
4222
  disabled: () => string | null;
4212
4223
  role: () => string | null;
4213
- id: () => string;
4214
4224
  label: () => string | null | undefined;
4215
- title: () => string | null | undefined;
4216
- toString: (maxLength?: number | undefined, options?: {
4217
- highlight: boolean;
4218
- } | undefined) => string;
4219
4225
  getId: () => string;
4220
4226
  getOwnerWindow: () => (Window & typeof globalThis) | null;
4221
4227
  getOwnerDocument: () => Document;
4222
4228
  getComputedStyle: () => CSSStyleDeclaration;
4223
4229
  getTagName: () => string;
4224
- tagName: () => string;
4225
4230
  typeIn: (text: string) => Promise<void>;
4226
- getAttribute: (qualifiedName: string) => string | null;
4227
4231
  getDOMNode: () => Element;
4228
4232
  node: () => Element;
4229
4233
  debug: (maxLength?: number | undefined, options?: {
@@ -4231,9 +4235,8 @@ declare const MenuLocator: {
4231
4235
  } | undefined) => void;
4232
4236
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
4233
4237
  getTextContent: () => string | null;
4234
- getParentNode: () => (Node & ParentNode) | null;
4235
- parent: () => (Node & ParentNode) | null;
4236
- getBoundingClientRect: () => DOMRect;
4238
+ getParentNode: () => ParentNode | null;
4239
+ parent: () => ParentNode | null;
4237
4240
  rect: () => DOMRect;
4238
4241
  hasClass: (classname: string) => boolean;
4239
4242
  containsFocus: () => boolean;
@@ -4245,19 +4248,17 @@ declare const MenuLocator: {
4245
4248
  exists: () => boolean;
4246
4249
  text: () => string | null;
4247
4250
  empty: () => boolean;
4248
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
4249
4251
  descendants: (selector: string) => Element[];
4250
- ancestors: (selector: string) => (Node & ParentNode)[];
4252
+ ancestors: (selector: string) => ParentNode[];
4251
4253
  attribute: (qualifiedName: string) => string | null;
4252
4254
  style: (property: string) => string;
4253
4255
  classNames: () => string[];
4254
- matches: (selector: string | undefined) => boolean;
4255
4256
  checked: () => any;
4256
4257
  selected: () => any;
4257
4258
  readonly: () => any;
4258
- children: (selector: string) => Element[];
4259
- parents: (selector: string) => (Node & ParentNode)[];
4259
+ parents: (selector: string) => ParentNode[];
4260
4260
  } & {
4261
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4261
4262
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4262
4263
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4263
4264
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -4295,7 +4296,6 @@ declare const MenuLocator: {
4295
4296
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4296
4297
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4297
4298
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4298
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4299
4299
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4300
4300
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4301
4301
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -4345,24 +4345,28 @@ declare const MenuLocator: {
4345
4345
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
4346
4346
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
4347
4347
  } & {
4348
+ toString: (maxLength?: number | undefined, options?: {
4349
+ highlight: boolean;
4350
+ } | undefined) => string;
4351
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
4352
+ children: (selector: string) => Element[];
4353
+ title: () => string | null | undefined;
4354
+ id: () => string;
4355
+ tagName: () => string;
4356
+ getAttribute: (qualifiedName: string) => string | null;
4357
+ getBoundingClientRect: () => DOMRect;
4358
+ matches: (selector: string | undefined) => boolean;
4348
4359
  visible: () => boolean;
4349
4360
  value: () => string | null;
4350
4361
  disabled: () => string | null;
4351
4362
  role: () => string | null;
4352
- id: () => string;
4353
4363
  label: () => string | null | undefined;
4354
- title: () => string | null | undefined;
4355
- toString: (maxLength?: number | undefined, options?: {
4356
- highlight: boolean;
4357
- } | undefined) => string;
4358
4364
  getId: () => string;
4359
4365
  getOwnerWindow: () => (Window & typeof globalThis) | null;
4360
4366
  getOwnerDocument: () => Document;
4361
4367
  getComputedStyle: () => CSSStyleDeclaration;
4362
4368
  getTagName: () => string;
4363
- tagName: () => string;
4364
4369
  typeIn: (text: string) => Promise<void>;
4365
- getAttribute: (qualifiedName: string) => string | null;
4366
4370
  getDOMNode: () => Element;
4367
4371
  node: () => Element;
4368
4372
  debug: (maxLength?: number | undefined, options?: {
@@ -4370,9 +4374,8 @@ declare const MenuLocator: {
4370
4374
  } | undefined) => void;
4371
4375
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
4372
4376
  getTextContent: () => string | null;
4373
- getParentNode: () => (Node & ParentNode) | null;
4374
- parent: () => (Node & ParentNode) | null;
4375
- getBoundingClientRect: () => DOMRect;
4377
+ getParentNode: () => ParentNode | null;
4378
+ parent: () => ParentNode | null;
4376
4379
  rect: () => DOMRect;
4377
4380
  hasClass: (classname: string) => boolean;
4378
4381
  containsFocus: () => boolean;
@@ -4384,19 +4387,17 @@ declare const MenuLocator: {
4384
4387
  exists: () => boolean;
4385
4388
  text: () => string | null;
4386
4389
  empty: () => boolean;
4387
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
4388
4390
  descendants: (selector: string) => Element[];
4389
- ancestors: (selector: string) => (Node & ParentNode)[];
4391
+ ancestors: (selector: string) => ParentNode[];
4390
4392
  attribute: (qualifiedName: string) => string | null;
4391
4393
  style: (property: string) => string;
4392
4394
  classNames: () => string[];
4393
- matches: (selector: string | undefined) => boolean;
4394
4395
  checked: () => any;
4395
4396
  selected: () => any;
4396
4397
  readonly: () => any;
4397
- children: (selector: string) => Element[];
4398
- parents: (selector: string) => (Node & ParentNode)[];
4398
+ parents: (selector: string) => ParentNode[];
4399
4399
  } & {
4400
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4400
4401
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4401
4402
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4402
4403
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -4434,7 +4435,6 @@ declare const MenuLocator: {
4434
4435
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4435
4436
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4436
4437
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4437
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4438
4438
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4439
4439
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4440
4440
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -4485,24 +4485,28 @@ declare const MenuLocator: {
4485
4485
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
4486
4486
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
4487
4487
  } & {
4488
+ toString: (maxLength?: number | undefined, options?: {
4489
+ highlight: boolean;
4490
+ } | undefined) => string;
4491
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
4492
+ children: (selector: string) => Element[];
4493
+ title: () => string | null | undefined;
4494
+ id: () => string;
4495
+ tagName: () => string;
4496
+ getAttribute: (qualifiedName: string) => string | null;
4497
+ getBoundingClientRect: () => DOMRect;
4498
+ matches: (selector: string | undefined) => boolean;
4488
4499
  visible: () => boolean;
4489
4500
  value: () => string | null;
4490
4501
  disabled: () => string | null;
4491
4502
  role: () => string | null;
4492
- id: () => string;
4493
4503
  label: () => string | null | undefined;
4494
- title: () => string | null | undefined;
4495
- toString: (maxLength?: number | undefined, options?: {
4496
- highlight: boolean;
4497
- } | undefined) => string;
4498
4504
  getId: () => string;
4499
4505
  getOwnerWindow: () => (Window & typeof globalThis) | null;
4500
4506
  getOwnerDocument: () => Document;
4501
4507
  getComputedStyle: () => CSSStyleDeclaration;
4502
4508
  getTagName: () => string;
4503
- tagName: () => string;
4504
4509
  typeIn: (text: string) => Promise<void>;
4505
- getAttribute: (qualifiedName: string) => string | null;
4506
4510
  getDOMNode: () => Element;
4507
4511
  node: () => Element;
4508
4512
  debug: (maxLength?: number | undefined, options?: {
@@ -4510,9 +4514,8 @@ declare const MenuLocator: {
4510
4514
  } | undefined) => void;
4511
4515
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
4512
4516
  getTextContent: () => string | null;
4513
- getParentNode: () => (Node & ParentNode) | null;
4514
- parent: () => (Node & ParentNode) | null;
4515
- getBoundingClientRect: () => DOMRect;
4517
+ getParentNode: () => ParentNode | null;
4518
+ parent: () => ParentNode | null;
4516
4519
  rect: () => DOMRect;
4517
4520
  hasClass: (classname: string) => boolean;
4518
4521
  containsFocus: () => boolean;
@@ -4524,19 +4527,17 @@ declare const MenuLocator: {
4524
4527
  exists: () => boolean;
4525
4528
  text: () => string | null;
4526
4529
  empty: () => boolean;
4527
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
4528
4530
  descendants: (selector: string) => Element[];
4529
- ancestors: (selector: string) => (Node & ParentNode)[];
4531
+ ancestors: (selector: string) => ParentNode[];
4530
4532
  attribute: (qualifiedName: string) => string | null;
4531
4533
  style: (property: string) => string;
4532
4534
  classNames: () => string[];
4533
- matches: (selector: string | undefined) => boolean;
4534
4535
  checked: () => any;
4535
4536
  selected: () => any;
4536
4537
  readonly: () => any;
4537
- children: (selector: string) => Element[];
4538
- parents: (selector: string) => (Node & ParentNode)[];
4538
+ parents: (selector: string) => ParentNode[];
4539
4539
  } & {
4540
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4540
4541
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4541
4542
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4542
4543
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -4574,7 +4575,6 @@ declare const MenuLocator: {
4574
4575
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4575
4576
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4576
4577
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4577
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4578
4578
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4579
4579
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4580
4580
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -4624,24 +4624,28 @@ declare const MenuLocator: {
4624
4624
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
4625
4625
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
4626
4626
  } & {
4627
+ toString: (maxLength?: number | undefined, options?: {
4628
+ highlight: boolean;
4629
+ } | undefined) => string;
4630
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
4631
+ children: (selector: string) => Element[];
4632
+ title: () => string | null | undefined;
4633
+ id: () => string;
4634
+ tagName: () => string;
4635
+ getAttribute: (qualifiedName: string) => string | null;
4636
+ getBoundingClientRect: () => DOMRect;
4637
+ matches: (selector: string | undefined) => boolean;
4627
4638
  visible: () => boolean;
4628
4639
  value: () => string | null;
4629
4640
  disabled: () => string | null;
4630
4641
  role: () => string | null;
4631
- id: () => string;
4632
4642
  label: () => string | null | undefined;
4633
- title: () => string | null | undefined;
4634
- toString: (maxLength?: number | undefined, options?: {
4635
- highlight: boolean;
4636
- } | undefined) => string;
4637
4643
  getId: () => string;
4638
4644
  getOwnerWindow: () => (Window & typeof globalThis) | null;
4639
4645
  getOwnerDocument: () => Document;
4640
4646
  getComputedStyle: () => CSSStyleDeclaration;
4641
4647
  getTagName: () => string;
4642
- tagName: () => string;
4643
4648
  typeIn: (text: string) => Promise<void>;
4644
- getAttribute: (qualifiedName: string) => string | null;
4645
4649
  getDOMNode: () => Element;
4646
4650
  node: () => Element;
4647
4651
  debug: (maxLength?: number | undefined, options?: {
@@ -4649,9 +4653,8 @@ declare const MenuLocator: {
4649
4653
  } | undefined) => void;
4650
4654
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
4651
4655
  getTextContent: () => string | null;
4652
- getParentNode: () => (Node & ParentNode) | null;
4653
- parent: () => (Node & ParentNode) | null;
4654
- getBoundingClientRect: () => DOMRect;
4656
+ getParentNode: () => ParentNode | null;
4657
+ parent: () => ParentNode | null;
4655
4658
  rect: () => DOMRect;
4656
4659
  hasClass: (classname: string) => boolean;
4657
4660
  containsFocus: () => boolean;
@@ -4663,19 +4666,17 @@ declare const MenuLocator: {
4663
4666
  exists: () => boolean;
4664
4667
  text: () => string | null;
4665
4668
  empty: () => boolean;
4666
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
4667
4669
  descendants: (selector: string) => Element[];
4668
- ancestors: (selector: string) => (Node & ParentNode)[];
4670
+ ancestors: (selector: string) => ParentNode[];
4669
4671
  attribute: (qualifiedName: string) => string | null;
4670
4672
  style: (property: string) => string;
4671
4673
  classNames: () => string[];
4672
- matches: (selector: string | undefined) => boolean;
4673
4674
  checked: () => any;
4674
4675
  selected: () => any;
4675
4676
  readonly: () => any;
4676
- children: (selector: string) => Element[];
4677
- parents: (selector: string) => (Node & ParentNode)[];
4677
+ parents: (selector: string) => ParentNode[];
4678
4678
  } & {
4679
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4679
4680
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4680
4681
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4681
4682
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -4713,7 +4714,6 @@ declare const MenuLocator: {
4713
4714
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4714
4715
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4715
4716
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4716
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4717
4717
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4718
4718
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4719
4719
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -4763,24 +4763,28 @@ declare const MenuLocator: {
4763
4763
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
4764
4764
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
4765
4765
  } & {
4766
+ toString: (maxLength?: number | undefined, options?: {
4767
+ highlight: boolean;
4768
+ } | undefined) => string;
4769
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
4770
+ children: (selector: string) => Element[];
4771
+ title: () => string | null | undefined;
4772
+ id: () => string;
4773
+ tagName: () => string;
4774
+ getAttribute: (qualifiedName: string) => string | null;
4775
+ getBoundingClientRect: () => DOMRect;
4776
+ matches: (selector: string | undefined) => boolean;
4766
4777
  visible: () => boolean;
4767
4778
  value: () => string | null;
4768
4779
  disabled: () => string | null;
4769
4780
  role: () => string | null;
4770
- id: () => string;
4771
4781
  label: () => string | null | undefined;
4772
- title: () => string | null | undefined;
4773
- toString: (maxLength?: number | undefined, options?: {
4774
- highlight: boolean;
4775
- } | undefined) => string;
4776
4782
  getId: () => string;
4777
4783
  getOwnerWindow: () => (Window & typeof globalThis) | null;
4778
4784
  getOwnerDocument: () => Document;
4779
4785
  getComputedStyle: () => CSSStyleDeclaration;
4780
4786
  getTagName: () => string;
4781
- tagName: () => string;
4782
4787
  typeIn: (text: string) => Promise<void>;
4783
- getAttribute: (qualifiedName: string) => string | null;
4784
4788
  getDOMNode: () => Element;
4785
4789
  node: () => Element;
4786
4790
  debug: (maxLength?: number | undefined, options?: {
@@ -4788,9 +4792,8 @@ declare const MenuLocator: {
4788
4792
  } | undefined) => void;
4789
4793
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
4790
4794
  getTextContent: () => string | null;
4791
- getParentNode: () => (Node & ParentNode) | null;
4792
- parent: () => (Node & ParentNode) | null;
4793
- getBoundingClientRect: () => DOMRect;
4795
+ getParentNode: () => ParentNode | null;
4796
+ parent: () => ParentNode | null;
4794
4797
  rect: () => DOMRect;
4795
4798
  hasClass: (classname: string) => boolean;
4796
4799
  containsFocus: () => boolean;
@@ -4802,19 +4805,17 @@ declare const MenuLocator: {
4802
4805
  exists: () => boolean;
4803
4806
  text: () => string | null;
4804
4807
  empty: () => boolean;
4805
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
4806
4808
  descendants: (selector: string) => Element[];
4807
- ancestors: (selector: string) => (Node & ParentNode)[];
4809
+ ancestors: (selector: string) => ParentNode[];
4808
4810
  attribute: (qualifiedName: string) => string | null;
4809
4811
  style: (property: string) => string;
4810
4812
  classNames: () => string[];
4811
- matches: (selector: string | undefined) => boolean;
4812
4813
  checked: () => any;
4813
4814
  selected: () => any;
4814
4815
  readonly: () => any;
4815
- children: (selector: string) => Element[];
4816
- parents: (selector: string) => (Node & ParentNode)[];
4816
+ parents: (selector: string) => ParentNode[];
4817
4817
  } & {
4818
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4818
4819
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4819
4820
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4820
4821
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -4852,7 +4853,6 @@ declare const MenuLocator: {
4852
4853
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4853
4854
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4854
4855
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4855
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4856
4856
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4857
4857
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4858
4858
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -4906,24 +4906,28 @@ declare const MenuLocator: {
4906
4906
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
4907
4907
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
4908
4908
  } & {
4909
+ toString: (maxLength?: number | undefined, options?: {
4910
+ highlight: boolean;
4911
+ } | undefined) => string;
4912
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
4913
+ children: (selector: string) => Element[];
4914
+ title: () => string | null | undefined;
4915
+ id: () => string;
4916
+ tagName: () => string;
4917
+ getAttribute: (qualifiedName: string) => string | null;
4918
+ getBoundingClientRect: () => DOMRect;
4919
+ matches: (selector: string | undefined) => boolean;
4909
4920
  visible: () => boolean;
4910
4921
  value: () => string | null;
4911
4922
  disabled: () => string | null;
4912
4923
  role: () => string | null;
4913
- id: () => string;
4914
4924
  label: () => string | null | undefined;
4915
- title: () => string | null | undefined;
4916
- toString: (maxLength?: number | undefined, options?: {
4917
- highlight: boolean;
4918
- } | undefined) => string;
4919
4925
  getId: () => string;
4920
4926
  getOwnerWindow: () => (Window & typeof globalThis) | null;
4921
4927
  getOwnerDocument: () => Document;
4922
4928
  getComputedStyle: () => CSSStyleDeclaration;
4923
4929
  getTagName: () => string;
4924
- tagName: () => string;
4925
4930
  typeIn: (text: string) => Promise<void>;
4926
- getAttribute: (qualifiedName: string) => string | null;
4927
4931
  getDOMNode: () => Element;
4928
4932
  node: () => Element;
4929
4933
  debug: (maxLength?: number | undefined, options?: {
@@ -4931,9 +4935,8 @@ declare const MenuLocator: {
4931
4935
  } | undefined) => void;
4932
4936
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
4933
4937
  getTextContent: () => string | null;
4934
- getParentNode: () => (Node & ParentNode) | null;
4935
- parent: () => (Node & ParentNode) | null;
4936
- getBoundingClientRect: () => DOMRect;
4938
+ getParentNode: () => ParentNode | null;
4939
+ parent: () => ParentNode | null;
4937
4940
  rect: () => DOMRect;
4938
4941
  hasClass: (classname: string) => boolean;
4939
4942
  containsFocus: () => boolean;
@@ -4945,19 +4948,17 @@ declare const MenuLocator: {
4945
4948
  exists: () => boolean;
4946
4949
  text: () => string | null;
4947
4950
  empty: () => boolean;
4948
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
4949
4951
  descendants: (selector: string) => Element[];
4950
- ancestors: (selector: string) => (Node & ParentNode)[];
4952
+ ancestors: (selector: string) => ParentNode[];
4951
4953
  attribute: (qualifiedName: string) => string | null;
4952
4954
  style: (property: string) => string;
4953
4955
  classNames: () => string[];
4954
- matches: (selector: string | undefined) => boolean;
4955
4956
  checked: () => any;
4956
4957
  selected: () => any;
4957
4958
  readonly: () => any;
4958
- children: (selector: string) => Element[];
4959
- parents: (selector: string) => (Node & ParentNode)[];
4959
+ parents: (selector: string) => ParentNode[];
4960
4960
  } & {
4961
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4961
4962
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4962
4963
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4963
4964
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -4995,7 +4996,6 @@ declare const MenuLocator: {
4995
4996
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4996
4997
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4997
4998
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4998
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
4999
4999
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5000
5000
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5001
5001
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -5045,24 +5045,28 @@ declare const MenuLocator: {
5045
5045
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
5046
5046
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
5047
5047
  } & {
5048
+ toString: (maxLength?: number | undefined, options?: {
5049
+ highlight: boolean;
5050
+ } | undefined) => string;
5051
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
5052
+ children: (selector: string) => Element[];
5053
+ title: () => string | null | undefined;
5054
+ id: () => string;
5055
+ tagName: () => string;
5056
+ getAttribute: (qualifiedName: string) => string | null;
5057
+ getBoundingClientRect: () => DOMRect;
5058
+ matches: (selector: string | undefined) => boolean;
5048
5059
  visible: () => boolean;
5049
5060
  value: () => string | null;
5050
5061
  disabled: () => string | null;
5051
5062
  role: () => string | null;
5052
- id: () => string;
5053
5063
  label: () => string | null | undefined;
5054
- title: () => string | null | undefined;
5055
- toString: (maxLength?: number | undefined, options?: {
5056
- highlight: boolean;
5057
- } | undefined) => string;
5058
5064
  getId: () => string;
5059
5065
  getOwnerWindow: () => (Window & typeof globalThis) | null;
5060
5066
  getOwnerDocument: () => Document;
5061
5067
  getComputedStyle: () => CSSStyleDeclaration;
5062
5068
  getTagName: () => string;
5063
- tagName: () => string;
5064
5069
  typeIn: (text: string) => Promise<void>;
5065
- getAttribute: (qualifiedName: string) => string | null;
5066
5070
  getDOMNode: () => Element;
5067
5071
  node: () => Element;
5068
5072
  debug: (maxLength?: number | undefined, options?: {
@@ -5070,9 +5074,8 @@ declare const MenuLocator: {
5070
5074
  } | undefined) => void;
5071
5075
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
5072
5076
  getTextContent: () => string | null;
5073
- getParentNode: () => (Node & ParentNode) | null;
5074
- parent: () => (Node & ParentNode) | null;
5075
- getBoundingClientRect: () => DOMRect;
5077
+ getParentNode: () => ParentNode | null;
5078
+ parent: () => ParentNode | null;
5076
5079
  rect: () => DOMRect;
5077
5080
  hasClass: (classname: string) => boolean;
5078
5081
  containsFocus: () => boolean;
@@ -5084,19 +5087,17 @@ declare const MenuLocator: {
5084
5087
  exists: () => boolean;
5085
5088
  text: () => string | null;
5086
5089
  empty: () => boolean;
5087
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
5088
5090
  descendants: (selector: string) => Element[];
5089
- ancestors: (selector: string) => (Node & ParentNode)[];
5091
+ ancestors: (selector: string) => ParentNode[];
5090
5092
  attribute: (qualifiedName: string) => string | null;
5091
5093
  style: (property: string) => string;
5092
5094
  classNames: () => string[];
5093
- matches: (selector: string | undefined) => boolean;
5094
5095
  checked: () => any;
5095
5096
  selected: () => any;
5096
5097
  readonly: () => any;
5097
- children: (selector: string) => Element[];
5098
- parents: (selector: string) => (Node & ParentNode)[];
5098
+ parents: (selector: string) => ParentNode[];
5099
5099
  } & {
5100
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5100
5101
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5101
5102
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5102
5103
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -5134,7 +5135,6 @@ declare const MenuLocator: {
5134
5135
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5135
5136
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5136
5137
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5137
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5138
5138
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5139
5139
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5140
5140
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -5184,24 +5184,28 @@ declare const MenuLocator: {
5184
5184
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
5185
5185
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
5186
5186
  } & {
5187
+ toString: (maxLength?: number | undefined, options?: {
5188
+ highlight: boolean;
5189
+ } | undefined) => string;
5190
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
5191
+ children: (selector: string) => Element[];
5192
+ title: () => string | null | undefined;
5193
+ id: () => string;
5194
+ tagName: () => string;
5195
+ getAttribute: (qualifiedName: string) => string | null;
5196
+ getBoundingClientRect: () => DOMRect;
5197
+ matches: (selector: string | undefined) => boolean;
5187
5198
  visible: () => boolean;
5188
5199
  value: () => string | null;
5189
5200
  disabled: () => string | null;
5190
5201
  role: () => string | null;
5191
- id: () => string;
5192
5202
  label: () => string | null | undefined;
5193
- title: () => string | null | undefined;
5194
- toString: (maxLength?: number | undefined, options?: {
5195
- highlight: boolean;
5196
- } | undefined) => string;
5197
5203
  getId: () => string;
5198
5204
  getOwnerWindow: () => (Window & typeof globalThis) | null;
5199
5205
  getOwnerDocument: () => Document;
5200
5206
  getComputedStyle: () => CSSStyleDeclaration;
5201
5207
  getTagName: () => string;
5202
- tagName: () => string;
5203
5208
  typeIn: (text: string) => Promise<void>;
5204
- getAttribute: (qualifiedName: string) => string | null;
5205
5209
  getDOMNode: () => Element;
5206
5210
  node: () => Element;
5207
5211
  debug: (maxLength?: number | undefined, options?: {
@@ -5209,9 +5213,8 @@ declare const MenuLocator: {
5209
5213
  } | undefined) => void;
5210
5214
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
5211
5215
  getTextContent: () => string | null;
5212
- getParentNode: () => (Node & ParentNode) | null;
5213
- parent: () => (Node & ParentNode) | null;
5214
- getBoundingClientRect: () => DOMRect;
5216
+ getParentNode: () => ParentNode | null;
5217
+ parent: () => ParentNode | null;
5215
5218
  rect: () => DOMRect;
5216
5219
  hasClass: (classname: string) => boolean;
5217
5220
  containsFocus: () => boolean;
@@ -5223,19 +5226,17 @@ declare const MenuLocator: {
5223
5226
  exists: () => boolean;
5224
5227
  text: () => string | null;
5225
5228
  empty: () => boolean;
5226
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
5227
5229
  descendants: (selector: string) => Element[];
5228
- ancestors: (selector: string) => (Node & ParentNode)[];
5230
+ ancestors: (selector: string) => ParentNode[];
5229
5231
  attribute: (qualifiedName: string) => string | null;
5230
5232
  style: (property: string) => string;
5231
5233
  classNames: () => string[];
5232
- matches: (selector: string | undefined) => boolean;
5233
5234
  checked: () => any;
5234
5235
  selected: () => any;
5235
5236
  readonly: () => any;
5236
- children: (selector: string) => Element[];
5237
- parents: (selector: string) => (Node & ParentNode)[];
5237
+ parents: (selector: string) => ParentNode[];
5238
5238
  } & {
5239
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5239
5240
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5240
5241
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5241
5242
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -5273,7 +5274,6 @@ declare const MenuLocator: {
5273
5274
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5274
5275
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5275
5276
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5276
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5277
5277
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5278
5278
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5279
5279
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -5323,24 +5323,28 @@ declare const MenuLocator: {
5323
5323
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
5324
5324
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
5325
5325
  } & {
5326
+ toString: (maxLength?: number | undefined, options?: {
5327
+ highlight: boolean;
5328
+ } | undefined) => string;
5329
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
5330
+ children: (selector: string) => Element[];
5331
+ title: () => string | null | undefined;
5332
+ id: () => string;
5333
+ tagName: () => string;
5334
+ getAttribute: (qualifiedName: string) => string | null;
5335
+ getBoundingClientRect: () => DOMRect;
5336
+ matches: (selector: string | undefined) => boolean;
5326
5337
  visible: () => boolean;
5327
5338
  value: () => string | null;
5328
5339
  disabled: () => string | null;
5329
5340
  role: () => string | null;
5330
- id: () => string;
5331
5341
  label: () => string | null | undefined;
5332
- title: () => string | null | undefined;
5333
- toString: (maxLength?: number | undefined, options?: {
5334
- highlight: boolean;
5335
- } | undefined) => string;
5336
5342
  getId: () => string;
5337
5343
  getOwnerWindow: () => (Window & typeof globalThis) | null;
5338
5344
  getOwnerDocument: () => Document;
5339
5345
  getComputedStyle: () => CSSStyleDeclaration;
5340
5346
  getTagName: () => string;
5341
- tagName: () => string;
5342
5347
  typeIn: (text: string) => Promise<void>;
5343
- getAttribute: (qualifiedName: string) => string | null;
5344
5348
  getDOMNode: () => Element;
5345
5349
  node: () => Element;
5346
5350
  debug: (maxLength?: number | undefined, options?: {
@@ -5348,9 +5352,8 @@ declare const MenuLocator: {
5348
5352
  } | undefined) => void;
5349
5353
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
5350
5354
  getTextContent: () => string | null;
5351
- getParentNode: () => (Node & ParentNode) | null;
5352
- parent: () => (Node & ParentNode) | null;
5353
- getBoundingClientRect: () => DOMRect;
5355
+ getParentNode: () => ParentNode | null;
5356
+ parent: () => ParentNode | null;
5354
5357
  rect: () => DOMRect;
5355
5358
  hasClass: (classname: string) => boolean;
5356
5359
  containsFocus: () => boolean;
@@ -5362,19 +5365,17 @@ declare const MenuLocator: {
5362
5365
  exists: () => boolean;
5363
5366
  text: () => string | null;
5364
5367
  empty: () => boolean;
5365
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
5366
5368
  descendants: (selector: string) => Element[];
5367
- ancestors: (selector: string) => (Node & ParentNode)[];
5369
+ ancestors: (selector: string) => ParentNode[];
5368
5370
  attribute: (qualifiedName: string) => string | null;
5369
5371
  style: (property: string) => string;
5370
5372
  classNames: () => string[];
5371
- matches: (selector: string | undefined) => boolean;
5372
5373
  checked: () => any;
5373
5374
  selected: () => any;
5374
5375
  readonly: () => any;
5375
- children: (selector: string) => Element[];
5376
- parents: (selector: string) => (Node & ParentNode)[];
5376
+ parents: (selector: string) => ParentNode[];
5377
5377
  } & {
5378
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5378
5379
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5379
5380
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5380
5381
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -5412,7 +5413,6 @@ declare const MenuLocator: {
5412
5413
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5413
5414
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5414
5415
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5415
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5416
5416
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5417
5417
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5418
5418
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -5462,24 +5462,28 @@ declare const MenuLocator: {
5462
5462
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
5463
5463
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
5464
5464
  } & {
5465
+ toString: (maxLength?: number | undefined, options?: {
5466
+ highlight: boolean;
5467
+ } | undefined) => string;
5468
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
5469
+ children: (selector: string) => Element[];
5470
+ title: () => string | null | undefined;
5471
+ id: () => string;
5472
+ tagName: () => string;
5473
+ getAttribute: (qualifiedName: string) => string | null;
5474
+ getBoundingClientRect: () => DOMRect;
5475
+ matches: (selector: string | undefined) => boolean;
5465
5476
  visible: () => boolean;
5466
5477
  value: () => string | null;
5467
5478
  disabled: () => string | null;
5468
5479
  role: () => string | null;
5469
- id: () => string;
5470
5480
  label: () => string | null | undefined;
5471
- title: () => string | null | undefined;
5472
- toString: (maxLength?: number | undefined, options?: {
5473
- highlight: boolean;
5474
- } | undefined) => string;
5475
5481
  getId: () => string;
5476
5482
  getOwnerWindow: () => (Window & typeof globalThis) | null;
5477
5483
  getOwnerDocument: () => Document;
5478
5484
  getComputedStyle: () => CSSStyleDeclaration;
5479
5485
  getTagName: () => string;
5480
- tagName: () => string;
5481
5486
  typeIn: (text: string) => Promise<void>;
5482
- getAttribute: (qualifiedName: string) => string | null;
5483
5487
  getDOMNode: () => Element;
5484
5488
  node: () => Element;
5485
5489
  debug: (maxLength?: number | undefined, options?: {
@@ -5487,9 +5491,8 @@ declare const MenuLocator: {
5487
5491
  } | undefined) => void;
5488
5492
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
5489
5493
  getTextContent: () => string | null;
5490
- getParentNode: () => (Node & ParentNode) | null;
5491
- parent: () => (Node & ParentNode) | null;
5492
- getBoundingClientRect: () => DOMRect;
5494
+ getParentNode: () => ParentNode | null;
5495
+ parent: () => ParentNode | null;
5493
5496
  rect: () => DOMRect;
5494
5497
  hasClass: (classname: string) => boolean;
5495
5498
  containsFocus: () => boolean;
@@ -5501,19 +5504,17 @@ declare const MenuLocator: {
5501
5504
  exists: () => boolean;
5502
5505
  text: () => string | null;
5503
5506
  empty: () => boolean;
5504
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
5505
5507
  descendants: (selector: string) => Element[];
5506
- ancestors: (selector: string) => (Node & ParentNode)[];
5508
+ ancestors: (selector: string) => ParentNode[];
5507
5509
  attribute: (qualifiedName: string) => string | null;
5508
5510
  style: (property: string) => string;
5509
5511
  classNames: () => string[];
5510
- matches: (selector: string | undefined) => boolean;
5511
5512
  checked: () => any;
5512
5513
  selected: () => any;
5513
5514
  readonly: () => any;
5514
- children: (selector: string) => Element[];
5515
- parents: (selector: string) => (Node & ParentNode)[];
5515
+ parents: (selector: string) => ParentNode[];
5516
5516
  } & {
5517
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5517
5518
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5518
5519
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5519
5520
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -5551,7 +5552,6 @@ declare const MenuLocator: {
5551
5552
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5552
5553
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5553
5554
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5554
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5555
5555
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5556
5556
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5557
5557
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -5601,24 +5601,28 @@ declare const MenuLocator: {
5601
5601
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
5602
5602
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
5603
5603
  } & {
5604
+ toString: (maxLength?: number | undefined, options?: {
5605
+ highlight: boolean;
5606
+ } | undefined) => string;
5607
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
5608
+ children: (selector: string) => Element[];
5609
+ title: () => string | null | undefined;
5610
+ id: () => string;
5611
+ tagName: () => string;
5612
+ getAttribute: (qualifiedName: string) => string | null;
5613
+ getBoundingClientRect: () => DOMRect;
5614
+ matches: (selector: string | undefined) => boolean;
5604
5615
  visible: () => boolean;
5605
5616
  value: () => string | null;
5606
5617
  disabled: () => string | null;
5607
5618
  role: () => string | null;
5608
- id: () => string;
5609
5619
  label: () => string | null | undefined;
5610
- title: () => string | null | undefined;
5611
- toString: (maxLength?: number | undefined, options?: {
5612
- highlight: boolean;
5613
- } | undefined) => string;
5614
5620
  getId: () => string;
5615
5621
  getOwnerWindow: () => (Window & typeof globalThis) | null;
5616
5622
  getOwnerDocument: () => Document;
5617
5623
  getComputedStyle: () => CSSStyleDeclaration;
5618
5624
  getTagName: () => string;
5619
- tagName: () => string;
5620
5625
  typeIn: (text: string) => Promise<void>;
5621
- getAttribute: (qualifiedName: string) => string | null;
5622
5626
  getDOMNode: () => Element;
5623
5627
  node: () => Element;
5624
5628
  debug: (maxLength?: number | undefined, options?: {
@@ -5626,9 +5630,8 @@ declare const MenuLocator: {
5626
5630
  } | undefined) => void;
5627
5631
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
5628
5632
  getTextContent: () => string | null;
5629
- getParentNode: () => (Node & ParentNode) | null;
5630
- parent: () => (Node & ParentNode) | null;
5631
- getBoundingClientRect: () => DOMRect;
5633
+ getParentNode: () => ParentNode | null;
5634
+ parent: () => ParentNode | null;
5632
5635
  rect: () => DOMRect;
5633
5636
  hasClass: (classname: string) => boolean;
5634
5637
  containsFocus: () => boolean;
@@ -5640,19 +5643,17 @@ declare const MenuLocator: {
5640
5643
  exists: () => boolean;
5641
5644
  text: () => string | null;
5642
5645
  empty: () => boolean;
5643
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
5644
5646
  descendants: (selector: string) => Element[];
5645
- ancestors: (selector: string) => (Node & ParentNode)[];
5647
+ ancestors: (selector: string) => ParentNode[];
5646
5648
  attribute: (qualifiedName: string) => string | null;
5647
5649
  style: (property: string) => string;
5648
5650
  classNames: () => string[];
5649
- matches: (selector: string | undefined) => boolean;
5650
5651
  checked: () => any;
5651
5652
  selected: () => any;
5652
5653
  readonly: () => any;
5653
- children: (selector: string) => Element[];
5654
- parents: (selector: string) => (Node & ParentNode)[];
5654
+ parents: (selector: string) => ParentNode[];
5655
5655
  } & {
5656
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5656
5657
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5657
5658
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5658
5659
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -5690,7 +5691,6 @@ declare const MenuLocator: {
5690
5691
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5691
5692
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5692
5693
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5693
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5694
5694
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5695
5695
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5696
5696
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -5741,24 +5741,28 @@ declare const MenuLocator: {
5741
5741
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
5742
5742
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
5743
5743
  } & {
5744
+ toString: (maxLength?: number | undefined, options?: {
5745
+ highlight: boolean;
5746
+ } | undefined) => string;
5747
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
5748
+ children: (selector: string) => Element[];
5749
+ title: () => string | null | undefined;
5750
+ id: () => string;
5751
+ tagName: () => string;
5752
+ getAttribute: (qualifiedName: string) => string | null;
5753
+ getBoundingClientRect: () => DOMRect;
5754
+ matches: (selector: string | undefined) => boolean;
5744
5755
  visible: () => boolean;
5745
5756
  value: () => string | null;
5746
5757
  disabled: () => string | null;
5747
5758
  role: () => string | null;
5748
- id: () => string;
5749
5759
  label: () => string | null | undefined;
5750
- title: () => string | null | undefined;
5751
- toString: (maxLength?: number | undefined, options?: {
5752
- highlight: boolean;
5753
- } | undefined) => string;
5754
5760
  getId: () => string;
5755
5761
  getOwnerWindow: () => (Window & typeof globalThis) | null;
5756
5762
  getOwnerDocument: () => Document;
5757
5763
  getComputedStyle: () => CSSStyleDeclaration;
5758
5764
  getTagName: () => string;
5759
- tagName: () => string;
5760
5765
  typeIn: (text: string) => Promise<void>;
5761
- getAttribute: (qualifiedName: string) => string | null;
5762
5766
  getDOMNode: () => Element;
5763
5767
  node: () => Element;
5764
5768
  debug: (maxLength?: number | undefined, options?: {
@@ -5766,9 +5770,8 @@ declare const MenuLocator: {
5766
5770
  } | undefined) => void;
5767
5771
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
5768
5772
  getTextContent: () => string | null;
5769
- getParentNode: () => (Node & ParentNode) | null;
5770
- parent: () => (Node & ParentNode) | null;
5771
- getBoundingClientRect: () => DOMRect;
5773
+ getParentNode: () => ParentNode | null;
5774
+ parent: () => ParentNode | null;
5772
5775
  rect: () => DOMRect;
5773
5776
  hasClass: (classname: string) => boolean;
5774
5777
  containsFocus: () => boolean;
@@ -5780,19 +5783,17 @@ declare const MenuLocator: {
5780
5783
  exists: () => boolean;
5781
5784
  text: () => string | null;
5782
5785
  empty: () => boolean;
5783
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
5784
5786
  descendants: (selector: string) => Element[];
5785
- ancestors: (selector: string) => (Node & ParentNode)[];
5787
+ ancestors: (selector: string) => ParentNode[];
5786
5788
  attribute: (qualifiedName: string) => string | null;
5787
5789
  style: (property: string) => string;
5788
5790
  classNames: () => string[];
5789
- matches: (selector: string | undefined) => boolean;
5790
5791
  checked: () => any;
5791
5792
  selected: () => any;
5792
5793
  readonly: () => any;
5793
- children: (selector: string) => Element[];
5794
- parents: (selector: string) => (Node & ParentNode)[];
5794
+ parents: (selector: string) => ParentNode[];
5795
5795
  } & {
5796
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5796
5797
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5797
5798
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5798
5799
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -5830,7 +5831,6 @@ declare const MenuLocator: {
5830
5831
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5831
5832
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5832
5833
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5833
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5834
5834
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5835
5835
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5836
5836
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -5880,24 +5880,28 @@ declare const MenuLocator: {
5880
5880
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
5881
5881
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
5882
5882
  } & {
5883
+ toString: (maxLength?: number | undefined, options?: {
5884
+ highlight: boolean;
5885
+ } | undefined) => string;
5886
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
5887
+ children: (selector: string) => Element[];
5888
+ title: () => string | null | undefined;
5889
+ id: () => string;
5890
+ tagName: () => string;
5891
+ getAttribute: (qualifiedName: string) => string | null;
5892
+ getBoundingClientRect: () => DOMRect;
5893
+ matches: (selector: string | undefined) => boolean;
5883
5894
  visible: () => boolean;
5884
5895
  value: () => string | null;
5885
5896
  disabled: () => string | null;
5886
5897
  role: () => string | null;
5887
- id: () => string;
5888
5898
  label: () => string | null | undefined;
5889
- title: () => string | null | undefined;
5890
- toString: (maxLength?: number | undefined, options?: {
5891
- highlight: boolean;
5892
- } | undefined) => string;
5893
5899
  getId: () => string;
5894
5900
  getOwnerWindow: () => (Window & typeof globalThis) | null;
5895
5901
  getOwnerDocument: () => Document;
5896
5902
  getComputedStyle: () => CSSStyleDeclaration;
5897
5903
  getTagName: () => string;
5898
- tagName: () => string;
5899
5904
  typeIn: (text: string) => Promise<void>;
5900
- getAttribute: (qualifiedName: string) => string | null;
5901
5905
  getDOMNode: () => Element;
5902
5906
  node: () => Element;
5903
5907
  debug: (maxLength?: number | undefined, options?: {
@@ -5905,9 +5909,8 @@ declare const MenuLocator: {
5905
5909
  } | undefined) => void;
5906
5910
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
5907
5911
  getTextContent: () => string | null;
5908
- getParentNode: () => (Node & ParentNode) | null;
5909
- parent: () => (Node & ParentNode) | null;
5910
- getBoundingClientRect: () => DOMRect;
5912
+ getParentNode: () => ParentNode | null;
5913
+ parent: () => ParentNode | null;
5911
5914
  rect: () => DOMRect;
5912
5915
  hasClass: (classname: string) => boolean;
5913
5916
  containsFocus: () => boolean;
@@ -5919,19 +5922,17 @@ declare const MenuLocator: {
5919
5922
  exists: () => boolean;
5920
5923
  text: () => string | null;
5921
5924
  empty: () => boolean;
5922
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
5923
5925
  descendants: (selector: string) => Element[];
5924
- ancestors: (selector: string) => (Node & ParentNode)[];
5926
+ ancestors: (selector: string) => ParentNode[];
5925
5927
  attribute: (qualifiedName: string) => string | null;
5926
5928
  style: (property: string) => string;
5927
5929
  classNames: () => string[];
5928
- matches: (selector: string | undefined) => boolean;
5929
5930
  checked: () => any;
5930
5931
  selected: () => any;
5931
5932
  readonly: () => any;
5932
- children: (selector: string) => Element[];
5933
- parents: (selector: string) => (Node & ParentNode)[];
5933
+ parents: (selector: string) => ParentNode[];
5934
5934
  } & {
5935
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5935
5936
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5936
5937
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5937
5938
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -5969,7 +5970,6 @@ declare const MenuLocator: {
5969
5970
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5970
5971
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5971
5972
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5972
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5973
5973
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5974
5974
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
5975
5975
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -6019,24 +6019,28 @@ declare const MenuLocator: {
6019
6019
  findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
6020
6020
  findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
6021
6021
  } & {
6022
+ toString: (maxLength?: number | undefined, options?: {
6023
+ highlight: boolean;
6024
+ } | undefined) => string;
6025
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
6026
+ children: (selector: string) => Element[];
6027
+ title: () => string | null | undefined;
6028
+ id: () => string;
6029
+ tagName: () => string;
6030
+ getAttribute: (qualifiedName: string) => string | null;
6031
+ getBoundingClientRect: () => DOMRect;
6032
+ matches: (selector: string | undefined) => boolean;
6022
6033
  visible: () => boolean;
6023
6034
  value: () => string | null;
6024
6035
  disabled: () => string | null;
6025
6036
  role: () => string | null;
6026
- id: () => string;
6027
6037
  label: () => string | null | undefined;
6028
- title: () => string | null | undefined;
6029
- toString: (maxLength?: number | undefined, options?: {
6030
- highlight: boolean;
6031
- } | undefined) => string;
6032
6038
  getId: () => string;
6033
6039
  getOwnerWindow: () => (Window & typeof globalThis) | null;
6034
6040
  getOwnerDocument: () => Document;
6035
6041
  getComputedStyle: () => CSSStyleDeclaration;
6036
6042
  getTagName: () => string;
6037
- tagName: () => string;
6038
6043
  typeIn: (text: string) => Promise<void>;
6039
- getAttribute: (qualifiedName: string) => string | null;
6040
6044
  getDOMNode: () => Element;
6041
6045
  node: () => Element;
6042
6046
  debug: (maxLength?: number | undefined, options?: {
@@ -6044,9 +6048,8 @@ declare const MenuLocator: {
6044
6048
  } | undefined) => void;
6045
6049
  accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
6046
6050
  getTextContent: () => string | null;
6047
- getParentNode: () => (Node & ParentNode) | null;
6048
- parent: () => (Node & ParentNode) | null;
6049
- getBoundingClientRect: () => DOMRect;
6051
+ getParentNode: () => ParentNode | null;
6052
+ parent: () => ParentNode | null;
6050
6053
  rect: () => DOMRect;
6051
6054
  hasClass: (classname: string) => boolean;
6052
6055
  containsFocus: () => boolean;
@@ -6058,19 +6061,17 @@ declare const MenuLocator: {
6058
6061
  exists: () => boolean;
6059
6062
  text: () => string | null;
6060
6063
  empty: () => boolean;
6061
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
6062
6064
  descendants: (selector: string) => Element[];
6063
- ancestors: (selector: string) => (Node & ParentNode)[];
6065
+ ancestors: (selector: string) => ParentNode[];
6064
6066
  attribute: (qualifiedName: string) => string | null;
6065
6067
  style: (property: string) => string;
6066
6068
  classNames: () => string[];
6067
- matches: (selector: string | undefined) => boolean;
6068
6069
  checked: () => any;
6069
6070
  selected: () => any;
6070
6071
  readonly: () => any;
6071
- children: (selector: string) => Element[];
6072
- parents: (selector: string) => (Node & ParentNode)[];
6072
+ parents: (selector: string) => ParentNode[];
6073
6073
  } & {
6074
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
6074
6075
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
6075
6076
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
6076
6077
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -6108,7 +6109,6 @@ declare const MenuLocator: {
6108
6109
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
6109
6110
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
6110
6111
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
6111
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
6112
6112
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
6113
6113
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
6114
6114
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;