import React from 'react'; export interface InfoProps { children: React.ReactNode; type?: 'warn' | 'info'; } /** * For displaying important info in MDX docs */ export declare const Info: ({ type, children }: InfoProps) => JSX.Element; export default Info;