/**
* Sets up a mock implementation for HTML Canvas API in testing environments.
*
* This function uses jest-canvas-mock to provide a mock implementation of the
* HTML Canvas API, allowing tests to run without requiring a real DOM canvas.
* Useful for testing components that use canvas rendering.
*
* @example
* // In your jest setup file
* import { setupCanvasMock } from '@trackunit/react-test-setup';
*
* setupCanvasMock();
*/
export declare const setupCanvasMock: () => void;