import * as React from 'react';
import { FormComponentProps, FormComponent } from '@tomino/dynamic-form';
declare type CommentProps = {
    text: string;
    header: string;
    color: string;
};
export declare const Comment: React.FC<FormComponentProps<CommentProps>>;
export declare const CommentView: FormComponent;
export {};
