/**
 * Account and Transaction API SpecificationLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
/** Links relevant to the payload */
export interface Links {
    self: string;
    first?: string;
    prev?: string;
    next?: string;
    last?: string;
}
export declare const linksSchema: Schema<Links>;
