import type { LocaleEntry } from './definitions';
/**
 * The possible definitions related to animals.
 */
export type AnimalDefinition = LocaleEntry<{
    bear: string[];
    bird: string[];
    cat: string[];
    cetacean: string[];
    cow: string[];
    crocodilia: string[];
    dog: string[];
    fish: string[];
    horse: string[];
    insect: string[];
    lion: string[];
    rabbit: string[];
    rodent: string[];
    snake: string[];
    type: string[];
}>;
