import { type Ticket } from "../types"; export interface GetTicketDetailsRequest { /** * User-specific [API Key](https://dash.bunny.net/account/settings) * @example "cb1a7c68-89a0-462a-9495-13ebd7366cfe" */ apiKey?: string; /** * Ticket id * @example 196584 */ id: number; } export type GetTicketDetailsResponse = Ticket; export declare const getTicketDetails: import("untypeable/dist/client-ca591958").g; export declare const getTicketDetailsEndpoints: { readonly "GET /support/ticket/details/:id": "GET /support/ticket/details/:id"; readonly getTicketDetails: "getTicketDetails"; }; export declare function getTicketDetailsClient(defaultRequestInit: RequestInit, { apiKey, id }: GetTicketDetailsRequest): Promise; //# sourceMappingURL=getTicketDetails.d.ts.map