import { FlutterDriver } from '../driver'; import type { SerializableFinder } from 'appium-flutter-finder'; export type FinderInput = { key: string; } | { text: string; } | { label: string; } | SerializableFinder | string | { getRawFinder: () => SerializableFinder; }; export declare const assertVisible: (driver: FlutterDriver, input: FinderInput, timeout?: number) => Promise; export declare const assertNotVisible: (driver: FlutterDriver, input: FinderInput, timeout?: number) => Promise; export declare const assertTappable: (driver: FlutterDriver, input: FinderInput, timeout?: number) => Promise; //# sourceMappingURL=assertions.d.ts.map