import React from 'react'; import { Appearance } from '../../types'; interface MessageProps extends React.HTMLAttributes { children: React.ReactNode; color?: 'danger'; appearance?: Appearance; } declare const Message: React.FC; export { Message }; //# sourceMappingURL=Message.d.ts.map