8 lines
319 B
TypeScript
8 lines
319 B
TypeScript
import * as React from 'react';
|
|
import { ChartsXAxisProps } from "../models/axis.js";
|
|
interface ChartsGroupedXAxisProps extends ChartsXAxisProps {}
|
|
/**
|
|
* @ignore - internal component.
|
|
*/
|
|
declare function ChartsGroupedXAxisTicks(inProps: ChartsGroupedXAxisProps): React.JSX.Element;
|
|
export { ChartsGroupedXAxisTicks }; |