import type { ValuesOf } from '../../Types/ValuesOf'; /** * `TickPlacement` - Defines the placement of ticks on a slider. * * @public */ export declare const TickPlacement: { readonly None: "none"; readonly Both: "both"; readonly Before: "before"; readonly After: "after"; }; /** * @public */ export type TickPlacement = ValuesOf; //# sourceMappingURL=TickPlacement.d.ts.map