interface IPostStatus { id: number; name: string; color: string; order: number; showInRoadmap: boolean; } export default IPostStatus;