/** Managed mobile device-test runtime — create / list / get / cancel. */ import type { CancelMobileDeviceTestResult, CreateMobileDeviceTestInput, ListMobileDeviceTestsQuery, MobileDeviceTest, MobileDeviceTestResult } from '@sylphx/contract'; import type { Client } from './client.js'; export type CreateInput = CreateMobileDeviceTestInput; export type ListQuery = ListMobileDeviceTestsQuery; export declare const list: (client: Client, projectId: string, query?: ListQuery) => Promise; export declare const create: (client: Client, projectId: string, input: CreateInput) => Promise; export declare const get: (client: Client, testId: string) => Promise; export declare const cancel: (client: Client, testId: string) => Promise; //# sourceMappingURL=mobileDeviceTests.d.ts.map