import { AnimationProps, Transition } from "motion/react";
export interface ListItem {
    index?: number | string;
    children?: any;
    gap?: number;
    style?: object;
    align?: "left" | "center" | "right";
    change?: string;
    onClick?: Function;
    motion: boolean | (AnimationProps & {
        mode?: "popLayout" | "sync" | "wait" | undefined;
        transition?: Transition;
        layoutId?: string;
        layout?: boolean | "position" | "size" | "preserve-aspect";
        fit?: boolean;
        fix?: boolean;
    });
}
export default function ListItem(props: ListItem): import("react").JSX.Element;
//# sourceMappingURL=ListItem.d.ts.map