/**
 * Information about a "forward payment" to the community.
 */
export interface ChatCommunityPayForwardInfo {
    /**
     * The user ID of the forwarding user.
     */
    userId: string;
    /**
     * The display name of the forwarding user.
     */
    displayName: string;
    /**
     * The user ID of the original gifter.
     *
     * May be empty if the original gift was anonymous.
     */
    originalGifterUserId?: string;
    /**
     * The display name of the original gifter.
     *
     * May be empty if the original gift was anonymous.
     */
    originalGifterDisplayName?: string;
}
//# sourceMappingURL=ChatCommunityPayForwardInfo.d.ts.map