import type { NewsroomContact } from '@prezly/sdk'; import type { ContactInfo } from '../sdk'; import type { ElementNode } from './ElementNode'; export declare const CONTACT_NODE_TYPE = "contact"; export declare enum ContactLayout { CARD = "card", SIGNATURE = "signature" } export interface ContactNode extends ElementNode { type: typeof CONTACT_NODE_TYPE; uuid: string; reference?: NewsroomContact['uuid']; contact: ContactInfo; show_avatar: boolean; layout: ContactLayout; } export declare function isContactNode(value: any): value is ContactNode;