import { HTMLAttributes } from 'react'; import { Interval } from '../types/main'; export type GetIntervalPropsParams = { interval: Interval; } & HTMLAttributes; export type GetIntervalPropsType = (props?: GetIntervalPropsParams) => HTMLAttributes & { key: string; };