import { ReactNode } from 'react'; import { IComponentAs } from 'office-ui-fabric-react'; export interface IDisplayToggle { /** * Optional className */ className?: string; offClass?: string; onClass?: string; onText?: string; offText?: string; label?: string; /** * How to render the badge. */ as?: IComponentAs; children: ReactNode; }