export interface InputCounterPropsModel {
    title: string;
    label: string;
    number: number;
    setNumber: (value: number) => void;
}
