import type { Options } from '../options';
import { Prng } from '@dicebear/avatars';
export default function (options: Options, prng: Prng): {
    path: (color: string) => string;
    isHat: boolean;
    zIndex: number;
};
