import { FC } from "react"; type Size = "small" | "medium" | "large"; export interface CoinProps { name: string; size?: Size | number; backgroundColor?: string; className?: string; } export declare const Coin: FC; export {}; //# sourceMappingURL=coin.d.ts.map