type PathTo = { name: string; params?: Record | undefined; }; export type GeneralConditions = { id: string; content: { fr: string; en: string; }; createdAt: string; pathTo?: string | PathTo; type: `TermsAndConditions::${'ClientGeneralRentalCondition' | 'OwnerGeneralRentalCondition' | 'TermsOfService' | 'TravelAgentGeneralRentalCondition' | 'PrivacyPolicy'}`; }; export type GeneralConditionsType = 'terms_of_services' | 'owner' | 'client' | 'privacy_policy' | 'travel_agent'; export {};