/// export declare type CounterProps = { value: number; onDecrement: () => void; onIncrement: () => void; disabled?: boolean; }; declare const Counter: ({ value, onIncrement, onDecrement, disabled, }: CounterProps) => JSX.Element; export { Counter }; //# sourceMappingURL=Counter.d.ts.map