declare const FlowrFaqTopics: {
    readonly 'flowr.use': "✨ Using <i>flowR</i>";
    readonly 'flowr.development': "🧑‍💻 <i>flowR</i> Development";
    readonly 'r.packages': "📦 R Packages";
    readonly 'editor.configs': "⚙️ Recommended Editor Configs";
};
type Topic = keyof typeof FlowrFaqTopics;
/**
 * Manage all questions and answers by topic.
 */
export declare class FaqStore {
    private faqs;
    private currTopic;
    withTopic(topic: Topic): this;
    addFaq(question: string, answer: string): this;
    private printAllTopics;
    toMarkdown(): string;
}
export {};
