/// <reference types="react" />
import { ICounterProps } from './Counter.props';
export { ICounterProps } from './Counter.props';
/**
 * ## Importing
 *
 * ```
 * import { Counter } from '@naturacosmeticos/natds-web';
 * ```
 */
export declare const Counter: {
    (props: ICounterProps): JSX.Element;
    displayName: string;
};
export default Counter;
