export declare const COLORS: { brightest: string; bright: string; medium: string; dark: string; darker: string; darkest: string; }; export type AnimationMode = 'spin' | 'pulse'; export interface LogoFrame { lines: string[]; color: string; } export declare function generateSpinFrames(): LogoFrame[]; export declare function generatePulseFrames(): LogoFrame[]; export declare function getFrames(mode: AnimationMode): LogoFrame[]; export declare const FRAME_DELAYS: { readonly spin: 55; readonly pulse: 80; };