import React, { type ComponentProps, type ReactNode } from 'react'; import { Button } from '../Button/Button'; import { IntentStripe } from '../IntentStripe/IntentStripe'; type IntentStripeProps = ComponentProps; export interface AlertProps extends IntentStripeProps { children?: ReactNode; className?: string; inline?: boolean; dismissible?: boolean; onRequestClose?: ComponentProps['onClick']; } export declare const Alert: ({ children, className, intent, inline, onRequestClose, dismissible, }: AlertProps) => React.JSX.Element; export default Alert; //# sourceMappingURL=Alert.d.ts.map