import * as React from 'react'; import { GrowthBehavior, Themeable } from '@workday/canvas-kit-react-common'; import { CanvasSystemIcon } from '@workday/design-assets-types'; import { ButtonOrAnchorComponent } from './types'; export interface HighlightButtonProps extends React.ButtonHTMLAttributes, Themeable, GrowthBehavior { size?: 'medium' | 'large'; buttonRef?: React.Ref; icon?: CanvasSystemIcon; as?: 'a'; } declare const HighlightButton: ButtonOrAnchorComponent; export default HighlightButton; //# sourceMappingURL=HighlightButton.d.ts.map