import { type GenericAnimation } from '../../animation'; import { GUI } from '../../core'; import { Group } from '../../shapes'; import type { AxisOptions, AxisStyleProps, RequiredAxisStyleProps } from './types'; export type { ArcAxisOptions, ArcAxisStyleProps, AxisOptions, AxisStyleProps, LinearAxisOptions, LinearAxisStyleProps, } from './types'; export declare class Axis extends GUI { constructor(options: AxisOptions); render(attributes: RequiredAxisStyleProps, container: Group, specificAnimation?: GenericAnimation): import("../../animation").AnimationResult[]; }