import { JSX } from "solid-js"; import { CloseButtonVariant } from "./CloseButton"; import { Variant } from "./types"; import { TransitionType } from "./helpers"; export interface AlertProps extends JSX.HTMLAttributes { bsPrefix?: string; variant?: Variant; dismissible?: boolean; defaultShow?: boolean; show?: boolean; onClose?: (a: any, b: any) => void; closeLabel?: string; closeVariant?: CloseButtonVariant; transition?: TransitionType; } declare const _default: ((uncontrolledProps: AlertProps) => JSX.Element) & { Link: import("./helpers").BsPrefixRefForwardingComponent<(props: import("solid-bootstrap-core").AnchorProps) => JSX.Element, unknown>; Heading: import("./helpers").BsPrefixRefForwardingComponent<(p: JSX.HTMLAttributes) => JSX.Element, unknown>; }; export default _default;