import JSONRequest from '../jsonrequest.js'; import { HTTPClient, HTTPClientResponse } from '../../client.js'; import { Application } from './models/types.js'; export default class GetApplicationByID extends JSONRequest { private index; constructor(c: HTTPClient, index: number | bigint); path(): string; prepare(response: HTTPClientResponse): Application; }