7 lines
250 B
TypeScript
7 lines
250 B
TypeScript
import * as React from 'react';
|
|
import { ChartsYAxisProps } from "../models/axis.js";
|
|
/**
|
|
* @ignore - internal component.
|
|
*/
|
|
declare function ChartsGroupedYAxisTicks(inProps: ChartsYAxisProps): React.JSX.Element;
|
|
export { ChartsGroupedYAxisTicks }; |