import React from 'react';
import { Language } from './types';
import './FAQ.css';
interface FAQProps {
    appName: string;
    faqUrl: string;
    language: Language;
}
export declare const FAQ: React.FC<FAQProps>;
export {};
