import { default as React } from 'react'; import { ColorType } from '../../../utils'; interface CheckMarkProps { checked: boolean; colorType: ColorType; disabled?: boolean; onChange: (checked: boolean) => void; } declare const CheckMark: React.FC; export type { CheckMarkProps }; export { CheckMark }; //# sourceMappingURL=index.d.ts.map