import { ReactNode, ReactElement, FunctionComponent } from "react"; interface CaseProps { value: any; children: ReactNode; } declare const Case: FunctionComponent; interface DefaultProps { children: ReactNode; } declare const Default: FunctionComponent; interface SwitchProps { on: any; children: ReactElement[]; } declare const Switch: FunctionComponent; export { Switch, Case, Default };