/// declare type ConfirmCounterProps = { title: string; subtitle?: string; value: number; onIncrement: () => void; onDecrement: () => void; error?: string; }; declare function ConfirmCounter({ title, subtitle, value, onIncrement, onDecrement, error, }: ConfirmCounterProps): JSX.Element; export { ConfirmCounter }; //# sourceMappingURL=ConfirmCounter.d.ts.map