export declare type GlyphMetadata = {
    name: string;
    /**
     * @example
     * ```
     * obj.unicode = ["\u0001"]
     * ```
     */
    unicode?: string[];
};
