import * as React from 'react'; import { ButtonProps } from '../Button'; export interface AlertActionCloseButtonProps extends ButtonProps { /** Additional classes added to the AlertActionCloseButton */ className?: string; /** A callback for when the close button is clicked */ onClose?: () => void; /** Aria Label for the Close button */ 'aria-label'?: string; /** Variant Label for the Close button */ variantLabel?: string; } export declare const AlertActionCloseButton: React.FunctionComponent; //# sourceMappingURL=AlertActionCloseButton.d.ts.map