/** * This taks a "stub" object and wraps it in a proxy to ensure that ONLY the defined properties on the stub * are what is called. This helps solve for things like void function calls that have impacts on application * performance at runtime but might be tolerated by code that could be ?. evaluating that function, etc. * @param toStub * @returns */ export declare function createStrictStub(toStub: Partial): T;