import { TarotSpread } from "./types.js";
/**
 * Tarot spread definitions
 */
export declare const TAROT_SPREADS: Record<string, TarotSpread>;
/**
 * Get all available spreads
 */
export declare function getAllSpreads(): TarotSpread[];
/**
 * Get a specific spread by name
 */
export declare function getSpread(name: string): TarotSpread | undefined;
/**
 * Validate if a spread type is supported
 */
export declare function isValidSpreadType(spreadType: string): boolean;
