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