/**
 * This file was auto-generated by Fern from our API Definition.
 */
import * as Intercom from "../../../index";
/**
 * Paginated Response
 */
export interface PaginatedResponse {
    /** The type of object */
    type?: PaginatedResponse.Type;
    pages?: Intercom.unstable.CursorPages;
    /** A count of the total number of objects. */
    total_count?: number;
    /** An array of Objects */
    data?: Intercom.unstable.PaginatedResponseDataItem[];
}
export declare namespace PaginatedResponse {
    /**
     * The type of object
     */
    type Type = "list" | "conversation.list";
    const Type: {
        readonly List: "list";
        readonly ConversationList: "conversation.list";
    };
}
