import React from "react"; import { type CheckboxProps } from "heroui-native"; export interface NCheckProps extends Omit { label?: string; /** Alias of `label`, so the same markup works against the React package. */ children?: React.ReactNode; /** Alias of `isSelected`. */ checked?: boolean; /** Alias of `onSelectedChange`. */ onChange?: (checked: boolean) => void; /** Alias of `isDisabled`. */ disabled?: boolean; containerClassName?: string; labelClassName?: string; } export declare const NCheck: React.NamedExoticComponent; //# sourceMappingURL=NCheck.d.ts.map