import React, { FC } from 'react'; import { ScaleSqrt } from 'eazychart-core/src'; import { ScaleSqrtDefinition } from 'eazychart-core/src/types'; export declare const useSqrtScale: () => { sqrtScale: ScaleSqrt; }; export declare type SqrtScaleProps = ScaleSqrtDefinition & { children: React.ReactNode; isWrapped?: boolean; }; export declare const SqrtScale: FC;