export interface RenderHookResult { /** * Triggers a re-render. The props will be passed to your renderHook callback. */ rerender: (props?: Props) => void; /** * A stable reference to the latest value returned by your renderHook callback. */ result: { /** * The value returned by your renderHook callback. */ current: Result; }; /** * Unmounts the test component. This is useful for when you need to test any * cleanup your useEffects have. */ unmount: () => void; } export interface RenderHookOptions { /** * The container to render into. Defaults to nil, which means the component * will not be mounted to a Roblox instance. */ container?: Instance; /** * The argument passed to the renderHook callback. Can be useful if you plan * to use the rerender utility to change the values passed to your hook. */ initialProps?: Props; } /** * Allows you to render a hook within a test React component without having to * create that component yourself. * @see https://github.com/testing-library/react-testing-library */ export declare function renderHook(render: (initialProps: Props) => Result, options?: RenderHookOptions): RenderHookResult;