import PropTypes from 'prop-types'; import { ReactElement } from "react"; export interface DraggableCardProps { children: ReactElement | string; onClick?: () => void; onWheelClick?: () => void; dragId: string; className?: string; [props: string]: any; } export declare const DraggableCard: { ({ onClick, onWheelClick, children, dragId, className, ...props }: DraggableCardProps): import("@emotion/react/jsx-runtime").JSX.Element; propTypes: { dragId: PropTypes.Validator; className: PropTypes.Requireable; children: PropTypes.Validator; onClick: PropTypes.Requireable<(...args: any[]) => any>; onWheelClick: PropTypes.Requireable<(...args: any[]) => any>; }; defaultProps: {}; };