interface Options {
    type?: string;
    locale?: string;
}
export default function animal(options?: Options): string;
