UNPKG

apphouse

Version:

Component library for React that uses observable state management and theme-able components.

15 lines (14 loc) 376 B
/// <reference types="react" /> import { SliderToggleStyles } from './SliderToggle.styles'; interface SliderOption { label: string; id: string; action: () => void; } interface SliderToggleProps { styleOverwrites?: SliderToggleStyles; options: SliderOption[]; value?: string; } export declare const SliderToggle: React.FC<SliderToggleProps>; export {};