import * as React from 'react'; import { NavigatorActions } from '../../types/navigatorActions.types'; import type { TOptionalTooltipWrapperProps } from '../../utilities/optional-tooltip-wrapper/OptionalTooltipWrapper'; import { Override } from '../../utilities/types'; declare const StyledButton: React.ForwardRefExoticComponent, HTMLButtonElement>, "appearance" | "size" | "theme" | "isRounded"> & { theme?: ("primary" | "white" | "neutral" | "primaryDark" | "success" | "warning" | "danger" | Partial>) | undefined; appearance?: ("simple" | "outline" | "solid" | Partial>) | undefined; size?: ("sm" | "md" | "lg" | "xs" | Partial>) | undefined; isRounded?: (boolean | Partial>) | undefined; } & { as?: React.ElementType; }>; type ActionIconProps = Override, { children: React.ReactNode; label: string; } & Omit & NavigatorActions>; export declare const ActionIcon: React.ForwardRefExoticComponent & React.RefAttributes>; export {};