import type { RemixElement } from '@remix-run/ui'; export declare const glyphNames: readonly ["add", "alert", "check", "chevronDown", "chevronVertical", "chevronUp", "chevronRight", "close", "copy", "edit", "expand", "info", "menu", "open", "search", "spinner", "trash"]; export type GlyphName = (typeof glyphNames)[number]; export type GlyphSymbol = RemixElement; export type GlyphValues = { readonly [key in GlyphName]: GlyphSymbol; }; export type GlyphContract = Readonly>; export declare const glyphContract: GlyphContract;