import * as React from 'react'; import { GrowthBehavior, Themeable, EmotionCanvasTheme } from '@workday/canvas-kit-react-common'; import { CanvasSystemIcon } from '@workday/design-assets-types'; import { OutlineButtonVariant, ButtonColors, ButtonOrAnchorComponent } from './types'; export interface OutlineButtonProps extends React.ButtonHTMLAttributes, Themeable, GrowthBehavior { variant?: OutlineButtonVariant; size?: 'small' | 'medium' | 'large'; buttonRef?: React.Ref; dataLabel?: String; icon?: CanvasSystemIcon; as?: 'a'; } declare const OutlineButton: ButtonOrAnchorComponent; export default OutlineButton; export declare const getOutlineButtonColors: (variant: OutlineButtonVariant, theme: EmotionCanvasTheme) => ButtonColors; //# sourceMappingURL=OutlineButton.d.ts.map