export declare const OrisonUtil: { /** * Invokes one of the functions given as parameters, depending on whether or not the current execution environment is on the server-side or the client-side. * The function for the other context (i.e. the function that will not be executed in the current context) will not be included in the Webpack-compiled file, so you can have side-dependent code in these functions. * * @param server The function which will be called on the server side. * @param client The function which will be called on the client side. * @returns The return value of the function which was executed. */ invokeSided(server: () => T, client: () => T): T; };