export const PUBLISHED_TYPES = { published: 'Publicada', draft: 'Borrador', } as const; export type PublishedType = keyof typeof PUBLISHED_TYPES;