import { TestLabel } from '@ephox/bedrock-client'; import { Optional, Result } from '@ephox/katamari'; import { type SugarElement } from '@ephox/sugar'; declare const select: (element: SugarElement, selector: string) => Optional>; declare const findIn: (container: SugarElement, selector: string) => Result, TestLabel>; declare const findAllIn: (container: SugarElement, selector: string) => Array>; declare const findTargetByLabel: (container: SugarElement, labelText: string) => Result, TestLabel>; export { select, findIn, findAllIn, findTargetByLabel }; //# sourceMappingURL=UiSearcher.d.ts.map