import React, { MouseEventHandler } from 'react'; import { StitchedCSS } from '~/theme'; import { IconName } from '~/components/Icons'; import { ButtonVariant, ButtonColor } from '~/components/Input/Button/Button'; export interface IconButtonProps { variant?: ButtonVariant; color?: ButtonColor; disabled?: boolean; icon?: IconName; onClick?: MouseEventHandler; css?: StitchedCSS; } export declare const IconButton: React.ForwardRefExoticComponent>; //# sourceMappingURL=IconButton.d.ts.map