import type * as t from "@yaebal/types"; import { PreCheckoutQueryContextBase } from "../generated/pre-checkout-query.js"; type Extra = Omit; /** PreCheckoutQueryContext = generated base + a positional `answer(ok)`. */ export declare class PreCheckoutQueryContext extends PreCheckoutQueryContextBase { /** Answer the pre-checkout query. Pass `true` to approve, `false` (+ error_message) to reject. */ answer(ok: boolean, params?: Extra): Promise; answer(params: Omit): Promise; } export {}; //# sourceMappingURL=pre-checkout-query.d.ts.map