/// <reference types="react" />
type ClearConversationProps = {
    filename: string;
    clearConversationUrl?: string;
    showToast: boolean;
    setshowSteps: React.Dispatch<React.SetStateAction<boolean>>;
};
declare const clearConversation: ({ filename, clearConversationUrl, showToast, setshowSteps }: ClearConversationProps) => Promise<undefined>;
export default clearConversation;
