export declare const chainState: readonly ["ethereum", "binance", "polygon", "arbitrum", "avalanche", "fantom"]; export declare type Chain = typeof chainState[number]; export declare const logoState: readonly ["comingSoon", "confirmed", "looking", "servers", "token", "lazyNft", "pack", "bundle", "chest", "marketplace"]; export declare type Logo = typeof logoState[number]; export declare type Size = number | string; export interface IllustrationProps { id?: string; /** * set logo */ logo: Chain | Logo; /** * Height of Illustration */ width?: Size; /** * Width of illustration */ height?: Size; }