import { Endpoint } from "../";
export declare abstract class PostEndpoint extends Endpoint {
    method: string;
    path: string;
    params: object;
}
/**
 * A unique token to reference this transaction with later calls to void or clear the authorization.
 * @remarks only used in Simulation requests
 */
export declare type TokenData = {
    token: string;
};
