import PropTypes from 'prop-types'; import { ThemeColorIndex } from '../../styles/theme.interface'; export interface InteractiveButtonProps { icon: any; active?: boolean; onClick: () => void; color?: ThemeColorIndex; onCorner?: boolean; className?: string; [props: string]: any; } export declare const InteractiveButton: { ({ icon, onClick, color, onCorner, active, className, ...props }: InteractiveButtonProps): import("@emotion/react/jsx-runtime").JSX.Element; propTypes: { className: PropTypes.Requireable; icon: PropTypes.Validator; active: PropTypes.Requireable; onCorner: PropTypes.Requireable; color: PropTypes.Requireable; onClick: PropTypes.Validator<(...args: any[]) => any>; }; };