import { GatewayReturnStatus } from "../../types"; import { CheckStatusProps } from "./checkStatus.types"; export declare const checkStatus: ({ environment, caps_transaction_id, locale }: CheckStatusProps) => Promise<{ error: string; data?: undefined; } | { data: GatewayReturnStatus; error?: undefined; }>;