import { ComponentPropsWithoutRef, FC, PropsWithChildren } from 'react'; interface InformationProps { kind?: InformationKind; } export declare enum InformationKind { Success = "success", Warning = "warning" } declare const Information: FC & InformationProps & PropsWithChildren>; export default Information;