import * as react from 'react';
import { PropsWithChildren } from 'react';

interface LoopItemEmptyProps extends PropsWithChildren {
    onClick: () => void;
    ctaSpacing?: boolean;
    disabledText?: string;
    disabled?: boolean;
}
declare const LoopItemEmpty: react.ForwardRefExoticComponent<LoopItemEmptyProps & react.RefAttributes<HTMLDivElement>>;

export { LoopItemEmpty as default };
export type { LoopItemEmptyProps };
