import { FC } from 'react'; import type { TGaugeCanvas } from '../../typings'; interface Props { value: TGaugeCanvas & { clipPathHash: string; }; } export declare const CanvasProvider: FC; export {};