import PropTypes from 'prop-types'; export interface EntityListCardProps { children: any; confirmationRemoveMessage?: string; onClickRemove?: (event: any) => void; className?: string; [props: string]: any; } export declare const EntityListCard: { ({ children, confirmationRemoveMessage, onClickRemove, className, ...props }: EntityListCardProps): import("@emotion/react/jsx-runtime").JSX.Element; propTypes: { className: PropTypes.Requireable; children: PropTypes.Validator; onClickRemove: PropTypes.Requireable<(...args: any[]) => any>; }; };