export type validateDragonLevelCompatibilityWithStarsOptions = { level: number; stars: number; throwOnError?: boolean; }; export declare function validateDragonLevelCompatibilityWithStars({ level, stars, throwOnError }: validateDragonLevelCompatibilityWithStarsOptions): boolean;