export {};

declare global {
    /**
     * comment
     */
    namespace Testimony {
        /**
         * @param img
         * @param responsive
         * @param alt
         * @param text
         * @param author
         */
        export interface Testimony1 {
            img?: string;
            responsive?: string;
            alt: string;
            text: string;
            author: string;
        }
    }
}
