import type { me_MeResponse } from '../models/me_MeResponse'; import type { CancelablePromise } from '../core/CancelablePromise'; export declare class MeService { /** * Retrieve the current user * * Returns the user that owns the API key making the request. * * @example * await assembly.retrieveMe(); */ static retrieveMe(): CancelablePromise; }