UNPKG

332 BTypeScriptView Raw
1import * as React from "react";
2import { type ControlCardProps } from "./controlCard";
3export type SwitchCardProps = Omit<ControlCardProps, "controlKind">;
4/**
5 * Switch Card component.
6 *
7 * @see https://blueprintjs.com/docs/#core/components/control-card.switch-card
8 */
9export declare const SwitchCard: React.FC<SwitchCardProps>;