import * as React from 'react';
interface ListItemProps {
    children?: React.ReactNode;
    funcss?: string;
    animation?: string;
    anchorPlacement?: string;
}
export default function Animation({ children, funcss, animation, anchorPlacement, ...rest }: ListItemProps): React.JSX.Element;
export {};
