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