import React from 'react'; import { Stage } from '..'; declare type ListTransitionProps = { list: Array; timeout: number; children: (item: Item, stage: Stage) => React.ReactNode; }; export declare function ListTransition({ list, timeout, children, }: ListTransitionProps): JSX.Element[]; export {};