export interface NewEntityCardProps { description: string; onClick: () => void; className?: string; [props: string]: any; } export declare const NewEntityCard: ({ description, onClick, className, ...props }: NewEntityCardProps) => import("@emotion/react/jsx-runtime").JSX.Element;