import { ReactElement } from 'react'; import PropTypes from 'prop-types'; export declare const styles: () => { padding: number; display: string; '.card-content': { padding: string; width: string; }; '&.clickeable': { cursor: string; }; }; export interface ListCardProps { children: ReactElement | string; clickeable?: boolean; onClick?: () => void; active?: boolean; className?: string; [props: string]: any; } export declare const ListCard: { ({ children, onClick, active, className, ...props }: ListCardProps): import("@emotion/react/jsx-runtime").JSX.Element; propTypes: { active: PropTypes.Requireable; onClick: PropTypes.Requireable<(...args: any[]) => any>; className: PropTypes.Requireable; children: PropTypes.Validator; clickeable: PropTypes.Requireable; }; };