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