import { UsePartlyCloudProps, Cloud } from './use-partly-cloud'; import { Style } from '../interface'; declare type CloudyProps = UsePartlyCloudProps; declare type WhiteCloudProps = { value: Cloud; style?: Style; }; export declare const WhiteCloud: ({ value, style }: WhiteCloudProps) => JSX.Element; declare const PartlyCloudy: (props: CloudyProps & Pick) => JSX.Element; export default PartlyCloudy;