export declare const useAdminContent: () => { fetchContent: () => Promise; getContentByPersona: (personaId: string) => Promise; getContentByStatus: (status: string) => Promise; createContent: (content: any) => Promise; updateContent: (id: string, updates: any) => Promise; deleteContent: (id: string) => Promise; publishContent: (id: string) => Promise; };