export type QuoteCategory = 'nolan' | 'action_80s' | 'sci_fi' | 'cult_classics'; export interface Quote { text: string; category: QuoteCategory; } export declare const QUOTE_LIBRARY: Quote[]; /** * Gets a random quote from the library. * Weights the selection so Nolan quotes appear ~20% of the time. */ export declare function getRandomSpinnerQuote(): string; //# sourceMappingURL=quotes.d.ts.map