export interface DomainSuggestions {
    prefix: string;
    suffixes: string[];
}
export interface DomainResponse {
    currency: string;
    taxLabel: string;
    isAvailable: boolean;
    formattedPrice: string;
    formattedYearlyPrice: string | null;
    success: boolean;
    error: string;
    domainSuggestions: DomainSuggestions;
}
export declare const FetchDomain: (domainName: string, locale: string, limit?: number) => Promise<DomainResponse>;
