import { IHttpLlmApplication } from "../structures/IHttpLlmApplication";
import { IHttpMigrateApplication } from "../structures/IHttpMigrateApplication";
import { ILlmSchema } from "../structures/ILlmSchema";
export declare namespace HttpLlmComposer {
    const application: <Model extends ILlmSchema.Model>(props: {
        model: Model;
        migrate: IHttpMigrateApplication;
        options: IHttpLlmApplication.IOptions<Model>;
    }) => IHttpLlmApplication<Model>;
    const shorten: <Model extends ILlmSchema.Model>(app: IHttpLlmApplication<Model>, limit?: number) => void;
}
