export type PillReorderPosition = 'before' | 'after';
export declare function movePill<T>(value: T[], from: number, to: number, position: PillReorderPosition): T[];
