import { FC } from 'react';

export declare const Counter: FC<Props>;

declare type Props = {
    /** Set initial value */
    initialValue?: number;
};

export { }
