import { LogoHoliday, LogoLayout, LogoVariant } from "./types.mjs"; //#region src/logo/geometry.d.ts /** Intrinsic viewBox of each lockup form. */ declare const LOGO_VIEW_BOX: Record; /** One logomark color treatment, split into independently transformable pieces. */ interface LogomarkParts { /** The leftmost spike. */ blue: string; /** The middle spike. */ red: string; /** The rightmost spike. */ yellow: string; /** The hedgehog head (jumps first). */ head: string; /** Shared `` markup appended after the parts (`""` when none). */ defs: string; } /** The logomark artwork split into 4 animatable parts, keyed by variant. */ declare const LOGOMARK_PARTS: Record; /** Holiday decorations, keyed by holiday. Injected inside the logomark's head group. */ declare const LOGO_HOLIDAY_ACCESSORIES: Record; /** * Inner SVG markup keyed by [layout][variant]. The `wordmark` layout is type with no * gradient/print artwork, so every variant renders the same mono wordmark. */ declare const LOGO_BODY: Record>; //#endregion export { LOGOMARK_PARTS, LOGO_BODY, LOGO_HOLIDAY_ACCESSORIES, LOGO_VIEW_BOX, LogomarkParts };