/// <reference types="react" />
import type { PressableProps } from 'react-native';
interface Props extends PressableProps {
    size?: 'xs' | 'sm' | 'md' | 'lg';
    checked?: boolean;
    inactiveColor?: string;
    activeColor?: string;
    checkColor?: string;
}
export default function Checkbox({ size, checked, inactiveColor, activeColor, checkColor, ...rest }: Props): JSX.Element;
export {};
//# sourceMappingURL=Checkbox.d.ts.map