import React from "react"; export interface CheckboxProps { label?: string; checked: boolean; onClick: (key: boolean) => void; labelStyles?: React.CSSProperties; containerStyles?: React.CSSProperties; disabled?: boolean; customColor: string; } declare const Checkbox: { ({ label, checked, onClick, labelStyles, containerStyles, disabled, customColor, }: CheckboxProps): JSX.Element; defaultProps: { checked: boolean; onClick: () => void; disabled: boolean; customColor: string; }; }; export default Checkbox;