import React from "react"; import { type SwitchProps } from "heroui-native"; export interface NSwitchProps extends Omit { label?: string; /** Alias of `isSelected`; `enabled` is the React package's name for it. */ checked?: boolean; enabled?: boolean; /** Alias of `onSelectedChange`. */ onChange?: (checked: boolean) => void; /** Alias of `isDisabled`. */ disabled?: boolean; containerClassName?: string; labelClassName?: string; } export declare const NSwitch: React.NamedExoticComponent; //# sourceMappingURL=NSwitch.d.ts.map