import type { IConnection, Primitive } from "@nestia/fetcher"; import type { IPaymentWebhookHistory } from "../../../structures/payments/IPaymentWebhookHistory"; export declare function webhook(connection: IConnection, input: webhook.Input): Promise; export declare namespace webhook { type Input = Primitive; const METADATA: { readonly method: "POST"; readonly path: "/payments/internal/webhook"; readonly request: { readonly type: "text/plain"; readonly encrypted: true; }; readonly response: { readonly type: "text/plain"; readonly encrypted: true; }; readonly status: null; }; const path: () => string; const simulate: (connection: IConnection, input: webhook.Input) => Promise; }