export interface Config { testIdAttribute: string /** * WARNING: `unstable` prefix means this API may change in patch and minor releases. * @param cb */ unstable_advanceTimersWrapper(cb: (...args: unknown[]) => unknown): unknown // eslint-disable-next-line @typescript-eslint/no-explicit-any asyncWrapper(cb: (...args: any[]) => any): Promise // eslint-disable-next-line @typescript-eslint/no-explicit-any eventWrapper(cb: (...args: any[]) => any): void asyncUtilTimeout: number computedStyleSupportsPseudoElements: boolean defaultHidden: boolean /** default value for the `ignore` option in `ByText` queries */ defaultIgnore: string showOriginalStackTrace: boolean throwSuggestions: boolean getElementError: (message: string | null, container: Element) => Error } export interface ConfigFn { (existingConfig: Config): Partial } export function configure(configDelta: ConfigFn | Partial): void export function getConfig(): Config