import { type ConnectorOut } from "./connectorOut";
export interface ListResponseConnectorOut {
    data: ConnectorOut[];
    done: boolean;
    iterator: string | null;
    prevIterator?: string | null;
}
export declare const ListResponseConnectorOutSerializer: {
    _fromJsonObject(object: any): ListResponseConnectorOut;
    _toJsonObject(self: ListResponseConnectorOut): any;
};
