import { Component } from 'react';
interface HiveAxisProps {
    angle: (...args: any[]) => any;
    color: (...args: any[]) => any;
    radius: any;
    index: number;
}
export declare class HiveAxis extends Component<HiveAxisProps, {}> {
    render(): JSX.Element;
}
export {};
