import { IconInterface } from "../../../icon/Icon"; export interface RichInputControlButtonProps { active: boolean; label: string; icon: IconInterface; onMouseDown: (e: any) => void; [props: string]: any; } export declare const RichInputControlButton: ({ label, icon, active, onMouseDown, ...props }: RichInputControlButtonProps) => import("@emotion/react/jsx-runtime").JSX.Element;