import type { PaymentLink } from './PaymentLink';
/**
 *
 * @export
 * @interface PaymentLinkSearchResponse
 */
export interface PaymentLinkSearchResponse {
    /**
     * An array containing the actual response objects.
     * @type {Array<PaymentLink>}
     * @memberof PaymentLinkSearchResponse
     */
    readonly data?: Array<PaymentLink>;
    /**
     * The number of skipped objects.
     * @type {number}
     * @memberof PaymentLinkSearchResponse
     */
    readonly offset?: number;
    /**
     * Whether there are more objects available after this set. If false, there are no more objects to retrieve.
     * @type {boolean}
     * @memberof PaymentLinkSearchResponse
     */
    readonly hasMore?: boolean;
    /**
     * The applied limit on the number of objects returned.
     * @type {number}
     * @memberof PaymentLinkSearchResponse
     */
    readonly limit?: number;
}
/**
 * Check if a given object implements the PaymentLinkSearchResponse interface.
 */
export declare function instanceOfPaymentLinkSearchResponse(value: object): value is PaymentLinkSearchResponse;
export declare function PaymentLinkSearchResponseFromJSON(json: any): PaymentLinkSearchResponse;
export declare function PaymentLinkSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentLinkSearchResponse;
export declare function PaymentLinkSearchResponseToJSON(json: any): PaymentLinkSearchResponse;
export declare function PaymentLinkSearchResponseToJSONTyped(value?: Omit<PaymentLinkSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;
