import * as React from 'react';
type QuickMessagesMenuProps = {
    questions: string[];
    favorites: string[];
    context: string;
    disabled: boolean;
    handleCreatePrompt: (prompt: string, context: string) => void;
    handleQuickMessages: (prompt: string) => void;
};
export default function QuickMessagesMenu({ questions, favorites, context, disabled, handleCreatePrompt, handleQuickMessages }: QuickMessagesMenuProps): React.JSX.Element;
export {};
