export {};

declare global {
    /**
     * comment
     */
    namespace Faq {
        /**
         * @param key - Hello
         */
        export interface Faq1 {
            question: string;
            answer: string;
        }
    }
}
