import type { NativeLlamaChatMessage } from './NativeRNLlama';
export type RNLlamaMessagePart = {
    text?: string;
};
export type RNLlamaOAICompatibleMessage = {
    role: string;
    content?: string | RNLlamaMessagePart[] | any;
};
export declare function formatChat(messages: RNLlamaOAICompatibleMessage[]): NativeLlamaChatMessage[];
//# sourceMappingURL=chat.d.ts.map