import { MessageType } from '../../../../../../src/types';

export declare const openAIQueries: {
    getMessages: (threadId: string, token: string | undefined, apiUrl?: string) => Promise<MessageType[]>;
};
export declare const openAIMutations: {
    createThread: (token: string | undefined, apiUrl?: string) => Promise<{
        threadId: string;
    }>;
    deleteThread: (threadId: string, token: string | undefined, apiUrl?: string) => Promise<void>;
    createMessage: (threadId: string, content: string, token?: string, apiUrl?: string) => Promise<any>;
};
