import React from "react";
interface YhwCheckboxProps {
    label: string;
    value: string | number;
    customStyle?: object | null;
    shape?: "square" | "circle";
    selectIcon?: string;
    selected: boolean;
    onSelect: (value: string | number) => void;
}
declare const YhwCheckboxRN: ({ label, value, customStyle, shape, selectIcon, selected, onSelect, }: YhwCheckboxProps) => React.JSX.Element;
export default YhwCheckboxRN;
