///
declare type MountHookResult = {
readonly current: T | null | undefined;
readonly error: Error | null;
};
/**
* Mounts a React hook function in a test component for testing.
*
*/
export declare const mountHook: (hookFn: (...args: any[]) => T) => Cypress.Chainable>;
export {};