import type { IconName } from "@nulogy/icons"; import React from "react"; import { type LayoutProps, type SpaceProps } from "styled-system"; type ControlIconProps = React.ComponentPropsWithRef<"button"> & SpaceProps & LayoutProps & { onClick?: React.MouseEventHandler; icon: IconName | "loading"; toggled?: boolean; disabled?: boolean; size?: string; type?: string; label?: string; }; declare const ControlIcon: React.ForwardRefExoticComponent & React.RefAttributes>; export default ControlIcon;