import { RichTextNode } from "../../../richtext-api/src";
export interface PeerProfile {
    name: string;
    logoID?: string | null;
    themeColor: string;
    themeFontColor: string;
    callToActionText: RichTextNode[];
    callToActionURL: string;
    callToActionImageID?: string | null;
    callToActionImageURL?: string | null;
}
