import type { ReplyProps } from './index-types';
export declare const Reply: {
    (props: ReplyProps): any;
    displayName: "Reply";
    serialize(replyProps: ReplyProps): {
        reply: {
            title: string;
            payload: string | undefined;
        };
    };
};
