import React from 'react';

declare function Preview({ message, color, }: {
    message: string;
    color: string;
}): React.JSX.Element;

export { Preview as default };
