import { UseRainRingsProps, Ring } from './use-rain-ring'; import { Style } from '../interface'; declare type RainRingProps = { value: Ring; style?: Style; }; export declare const RainRing: ({ value, style }: RainRingProps) => JSX.Element; declare type RainRingsProps = UseRainRingsProps & { style?: Style; }; declare const RainRings: (props: RainRingsProps) => JSX.Element; export default RainRings;