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