import React, { ReactElement, ReactNode } from "react"; export interface InformationDivProps { title?: string | ReactNode | ReactElement; text?: string | ReactNode | ReactElement; containerStyles?: React.CSSProperties; type?: "info" | "warning" | "error"; } declare const InformationDiv: { ({ title, text, containerStyles, type, }: InformationDivProps): JSX.Element; defaultProps: { title: undefined; text: undefined; containerStyles: undefined; type: string; }; }; export default InformationDiv;