import type { Site } from './Site'; /** * @type SitePreferences: Represents custom preferences at the site level within a preference group. Custom preference attributes are returned with the \"c_\" prefix. * * @property site: * */ export type SitePreferences = { site?: Site; } & { [key: string]: any; };