/**
 * Optional attribution helper
 * Helps users provide proper attribution as required by the license
 */
export interface AttributionInfo {
    hasAttribution: boolean;
    suggestions: string[];
    message: string;
}
export declare class LicenseChecker {
    /**
     * Helper to check if attribution is present and provide suggestions
     * This is optional and for guidance only
     */
    static checkAttribution(): AttributionInfo;
    /**
     * Display attribution information
     */
    static displayAttributionInfo(): void;
    /**
     * Get suggested attribution text
     */
    static getAttributionText(): {
        aboutSection: string;
        readme: string;
        cli: string;
    };
}
//# sourceMappingURL=license-checker.d.ts.map