import { direction, text } from '@synnaxlabs/x'; import { FC, PropsWithChildren } from 'react'; import { z } from 'zod'; import { Aether } from '../aether'; import { Flex } from '../flex'; import { lineplot } from './aether'; export interface AxisProps extends PropsWithChildren, Omit, "position" | "size">, Omit, Aether.ComponentProps { label?: string; labelLevel?: text.Level; labelDirection?: direction.Direction; onLabelChange?: (label: string) => void; } export declare const axisFactory: (dir: direction.Direction) => FC; export declare const XAxis: FC; export declare const YAxis: FC; //# sourceMappingURL=Axis.d.ts.map