/** * kameleo-local-api * You can use the following API endpoints to communicate with the local running Kameleo programmatically. * * The version of the OpenAPI document: 4.4.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import * as runtime from "../runtime"; import type { FingerprintPreview } from "../models/index"; export interface SearchFingerprintsRequest { deviceType?: string; osFamily?: string; browserProduct?: string; browserVersion?: string; } /** * */ export declare class FingerprintApi extends runtime.BaseAPI { /** * Retrieves a set of 25 fingerprints based on specified criteria, with the most recent browser versions at the beginning of the list. Note that calling this method multiple times will return different sets of fingerprints. */ searchFingerprintsRaw(requestParameters: SearchFingerprintsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>>; /** * Retrieves a set of 25 fingerprints based on specified criteria, with the most recent browser versions at the beginning of the list. Note that calling this method multiple times will return different sets of fingerprints. */ searchFingerprints(deviceType?: string, osFamily?: string, browserProduct?: string, browserVersion?: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; }