/**
 * This file was auto-generated by Fern from our API Definition.
 */
import * as Cohere from "../index";
export interface TokenizeResponse {
    /** An array of tokens, where each token is an integer. */
    tokens: number[];
    tokenStrings: string[];
    meta?: Cohere.ApiMeta;
}
