/** * A website contact entry for the RCS agent's contact information. */ export interface AgentWebsiteEntry { /** A valid URL for the website. */ url: string; /** Display label for the website (e.g., "Website", "Help Center"). */ label: string; }