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