import { type Decoration } from "@meursyphus/flitter"; export default function XAxisTick({ thickness, length, color, decoration, }: TickProp): any; type TickProp = { thickness: number; length?: number; color?: string; decoration?: Decoration; }; export {};