/**
 * This file was auto-generated by Fern from our API Definition.
 */
import * as serializers from "../index";
import * as Cohere from "../../api/index";
import * as core from "../../core";
import { Source } from "./Source";
export declare const Citation: core.serialization.ObjectSchema<serializers.Citation.Raw, Cohere.Citation>;
export declare namespace Citation {
    interface Raw {
        start?: number | null;
        end?: number | null;
        text?: string | null;
        sources?: Source.Raw[] | null;
    }
}
