import { CreateTestResponse, UploadMethod } from "./types";
export interface createTestAsThirdPartyScannerParams {
    businessUnitId: string;
    createdByUserId: string;
    assetId: string;
    artifactId: string;
    testName: string;
    testType: string;
    uploadMethod?: UploadMethod;
    productId?: string;
}
export declare function createTestAsThirdPartyScanner(token: string, organizationContext: string, params: createTestAsThirdPartyScannerParams): Promise<CreateTestResponse>;
