import type { ITakeSnapshotParams } from './takeSnapshot'; import type { ILoadOrganisationFacesResult } from './loadOrganisationFaces'; export interface IVisionApi { takeSnapshot(params: ITakeSnapshotParams): Promise; visionLoadOrganisationFaces(): Promise; }