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