import React from 'react'; import { MarginProps } from '../../helpers'; import { SharedMessagingProps } from '../../utils'; export interface MessageLocalization { close: string; } export type MessageProps = SharedMessagingProps & MarginProps & { localization?: MessageLocalization; }; export declare const Message: React.FC; //# sourceMappingURL=Message.d.ts.map