import { HatType } from '@df0/types'; export declare type Hat = { topLayer: Array; bottomLayer: Array; }; export declare const hatFromType: (type: HatType) => Hat; export declare const hats: Record;