import { CtaProps } from './cta';
import { JSX } from 'react';
type Props = {
    Icon?: React.ElementType;
    title: string;
    description?: JSX.Element | string;
    cta?: CtaProps;
    isLoading?: boolean;
};
export default function EmptyList({ Icon, title, description, cta, isLoading }: Props): import("react/jsx-runtime").JSX.Element;
export {};
