/** * Constructs a type safe implementation of a pseudo switch statement that can be used inline with React JSX. */ declare function inlineSwitch(caseKey: K, caseObject: Record): Record[K]; export { inlineSwitch };