export declare class DomainGenerator {
    private static readonly PREFIXES;
    private static readonly SUFFIXES;
    private static readonly ALTERNATIVES;
    private static readonly NUMBERS;
    static generateSuggestions(keyword: string, options?: {
        includeHyphens?: boolean;
        includeNumbers?: boolean;
        minLength?: number;
        maxLength?: number;
    }): string[];
    static scoreDomain(domain: string, keyword: string): number;
    static getSuggestionType(domain: string, keyword: string): 'exact' | 'prefix' | 'suffix' | 'alternate' | 'related';
}
