interface ICounterProps { value: number; canIncrement: boolean; onIncrement: () => void; onDecrement: () => void; onDelete: () => void; } export declare const Counter: ({ value, canIncrement, onIncrement, onDecrement, onDelete, }: ICounterProps) => import("react/jsx-runtime").JSX.Element; export {};