import { TLayer } from '../../../types/TLayer'; import { TUiColorsMain } from '../../../types/TUiColorsMain'; import { InputHTMLAttributes } from 'react'; type NativeAttrs = Omit, 'type'>; export type TRawCheckbox = { themeType?: TUiColorsMain; layer?: TLayer; checked?: boolean; } & NativeAttrs; export {};