import React from 'react'; import CounterStore from './CounterStore'; export interface CounterProps extends React.HTMLAttributes { counter?: CounterStore; } declare function useStore(_store?: CounterStore): CounterStore; declare const Counter: { (props: CounterProps): import("react/jsx-runtime").JSX.Element; useStore: typeof useStore; }; export default Counter;