import * as React from 'react'; import { Themeable } from '@workday/canvas-kit-react-common'; import { CanvasSystemIcon } from '@workday/design-assets-types'; import { IconButtonVariant, ButtonOrAnchorComponent } from './types'; export interface IconButtonProps extends React.ButtonHTMLAttributes, Themeable { 'aria-label': string; variant?: IconButtonVariant; size?: 'small' | 'medium'; toggled?: boolean; buttonRef?: React.Ref; icon?: CanvasSystemIcon; onToggleChange?: (toggled: boolean | undefined) => void; as?: 'a'; } declare const IconButton: ButtonOrAnchorComponent; export default IconButton; //# sourceMappingURL=IconButton.d.ts.map