import { PropsWithChildren, FC } from 'react';

interface ReactStatusManagerProps extends PropsWithChildren<any> {
    className?: string;
    items: any[];
    value?: any;
    as?: any;
    asProps?: any;
}
declare const ReactStatusManager: FC<ReactStatusManagerProps>;

export { ReactStatusManagerProps, ReactStatusManager as default };
