/// import type { SVGProps } from "../global"; import HappyEmoji from "./happy"; import NeutralEmoji from "./neutral"; import SadEmoji from "./sad"; declare const EmojiTypes: { HAPPY: ({ ...props }: { [x: string]: any; }) => JSX.Element; NEUTRAL: ({ ...props }: { [x: string]: any; }) => JSX.Element; SAD: ({ ...props }: { [x: string]: any; }) => JSX.Element; }; export declare type EmojiType = keyof typeof EmojiTypes; interface EmojiProps extends SVGProps { type: EmojiType; } /** * Shorthand component to return an Emoji based on a given input type * * @param type the given type of emoji to return from EmojiType * @returns the given emoji extended with any additional properties passed in */ declare const Emoji: ({ type, ...props }: EmojiProps) => JSX.Element; export default Emoji; export { HappyEmoji, NeutralEmoji, SadEmoji }; //# sourceMappingURL=index.d.ts.map