declare module "hardhat/types" {
    interface HardhatUserConfig {
        stripComments?: {
            enabled?: boolean;
            customHeader?: string;
            excludedFiles?: string[];
            preserveLicense?: boolean;
            authorInfo?: {
                author?: string;
                createdDate?: string;
                purpose?: string;
                description?: string;
            };
            headerStyle?: string;
        };
    }
    interface HardhatConfig {
        stripComments: {
            enabled: boolean;
            customHeader: string;
            excludedFiles: string[];
            preserveLicense: boolean;
            authorInfo: {
                author: string;
                createdDate: string;
                purpose: string;
                description: string;
            };
            headerStyle: string;
        };
    }
}
export {};
//# sourceMappingURL=index.d.ts.map