import { IComponent } from '@state-less/react-server';
export declare enum CommentPolicies {
    Authenticate = 0,
    AuthenticateRead = 1,
    Delete = 2
}
export declare const Comments: IComponent<any>;
export interface CommentProps {
    remove: () => void;
}
export declare const Comment: (props: CommentProps, { key }: {
    key: any;
}) => any;
