interface IExhaustiveSwitchArgs { switchValue: never; returnValue?: any; } export declare const exhaustiveSwitch: (args: IExhaustiveSwitchArgs) => never; export declare const exhaustiveSwitchThrow: (args: Pick) => never; export {};