import { StyledIcon } from "@styled-icons/styled-icon"; interface Props { alertHeader: JSX.Element | string; alertSubheader?: JSX.Element | string; backgroundColor?: string; collapsible?: boolean; children?: JSX.Element | string; Icon?: StyledIcon; } declare const Alert: ({ alertHeader, alertSubheader, backgroundColor, children, collapsible, Icon }: Props) => JSX.Element; export default Alert; //# sourceMappingURL=Alert.d.ts.map