import { Axis } from 'framer-motion';
export interface ItemData<T> {
    value: T;
    layout: Axis;
}
