export type LogoVariant = 'mark' | 'wordmark' | 'wordmark-stacked'; export interface LogoProps { /** Which logo layout to render */ variant?: LogoVariant; /** Height in pixels (width scales proportionally) */ size?: number; /** Override the ring/network color (defaults to theme primary) */ ringColor?: string; /** Override the diamond/identity color (defaults to theme accent) */ diamondColor?: string; /** Override the text color (defaults to theme text) */ textColor?: string; /** Show glow effects and detail layers */ glow?: boolean; /** Additional className */ className?: string; /** Additional inline styles */ style?: React.CSSProperties; } /** * The Molt Mark — MoltNet's visual identity. * * A broken circle ring in gradient teal (the network shell being shed) * with a faceted amber diamond at its center (the cryptographic * identity emerging). The gap in the ring is the molt itself. * * Premium treatment: gradient ring, faceted diamond, layered glow, * inner detail rings, gap endpoint nodes, radial accent lines. */ export declare function Logo({ variant, size, ringColor, diamondColor, textColor, glow, className, style, }: LogoProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=logo.d.ts.map