import type { LocalizedString } from './Exports'; export type HouseTruthLink = { description: LocalizedString; id: string; isCustom: boolean; position: number; published: boolean; type: 'houseTruthLink'; verified: boolean | null; }; export type HouseTruthLinkPayload = { house_truth_link: { custom_description?: LocalizedString; position?: number; published?: boolean; verified?: boolean; }; };