import { FunctionComponent, PropsWithChildren } from 'react';

interface LoopItemProps extends PropsWithChildren {
    onClick: () => void;
    id: string;
    thumbnail: string;
    title: string;
    active?: boolean;
    loading?: boolean;
    testCount: number | null;
    draftCount: number | null;
    cta?: React.ReactNode;
}
declare const LoopItem: FunctionComponent<LoopItemProps>;

export { LoopItem as default };
export type { LoopItemProps };
