import type { IconName } from "@nulogy/icons"; import React from "react"; import { type SpaceProps } from "styled-system"; import { type ComponentVariant } from "../NDSProvider/ComponentVariantContext"; interface BaseProps { variant?: ComponentVariant; color?: string; labelHidden?: boolean; icon?: IconName | "loading"; iconSize?: string; hoverBackgroundColor?: string; fontSize?: string; tooltip?: React.ReactNode; } interface IconicButtonProps extends BaseProps, SpaceProps, Omit, keyof BaseProps> { } declare const IconicButton: React.ForwardRefExoticComponent>; export declare const iconNames: string[]; export default IconicButton;