import { SVGProps, FunctionComponent } from 'react'; declare const MOODS: readonly ["sad", "shocked", "happy", "blissful", "lovestruck", "excited", "ko"]; declare const DEFAULT_PROPS: { readonly size: 240; readonly mood: "blissful"; readonly color: "#FFD882"; }; declare const PROPS_DATA: ({ name: string; type: string; description: string; default: 240; } | { name: string; type: string; description: string; default: "#FFD882"; } | { name: string; type: string; description: string; default: "blissful"; })[]; type KawaiiMood = (typeof MOODS)[number]; type KawaiiProps = SVGProps & { size?: number | string; color?: string; mood?: KawaiiMood; uniqueId?: string; }; declare const Astronaut: FunctionComponent; declare const Backpack: FunctionComponent; declare const Browser: FunctionComponent; declare const Cat: FunctionComponent; declare const Chocolate: FunctionComponent; declare const CreditCard: FunctionComponent; declare const Cyborg: FunctionComponent; declare const File: FunctionComponent; declare const Folder: FunctionComponent; declare const Ghost: FunctionComponent; declare const HumanCat: FunctionComponent; declare const HumanDinosaur: FunctionComponent; declare const IceCream: FunctionComponent; declare const Mug: FunctionComponent; declare const Planet: FunctionComponent; declare const SpeechBubble: FunctionComponent; export { Astronaut, Backpack, Browser, Cat, Chocolate, CreditCard, Cyborg, DEFAULT_PROPS, File, Folder, Ghost, HumanCat, HumanDinosaur, IceCream, type KawaiiProps, MOODS, Mug, PROPS_DATA, Planet, SpeechBubble };