import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IOrientableProps } from '../../../Behaviors/Orientable'; import type { TickLabelPosition } from '../../../Types/TickLabelPosition'; /** * Represents the `ITickBarElementProps` interface. * * @public */ export interface ITickBarElementProps extends IDisableableProps, IOrientableProps { min: number; max: number; interval: number; showLabels: boolean; labelAccessor: (value: number, index: number) => string; labelPosition: TickLabelPosition; } //# sourceMappingURL=ITickBarElementProps.d.ts.map