import { IPaymentReservation } from "payment-api/lib/structures/payments/IPaymentReservation"; import { IPaymentSource } from "payment-api/lib/structures/payments/IPaymentSource"; import { tags } from "typia"; export declare class PaymentReservationsController { get(input: IPaymentSource.IAccessor): Promise; at(id: string & tags.Format<"uuid">, input: IPaymentSource.IPassword): Promise; store(input: IPaymentReservation.IStore): Promise; }