export {};

declare global {
    namespace Scope {
        export interface Scope1 {
            title?: string;
            scope: {
                title: string;
                text: string;
                className?: string;
                img?: string;
                alt?: string;
                button?: Button.Button;
            }[];
        }
    }
}
