import React from "react"; import { CardFieldBaseProps } from "./shared"; export interface CardFieldSwitchProps extends Omit, React.PropsWithChildren { fallback?: never; fallbackPredicate?: never; isEditable?: boolean; off?: string; offValue?: string; on?: string; onValue?: string; type: "switch"; value: boolean; } export declare const CardFieldSwitch: React.FC>; export default CardFieldSwitch;