export type HuduOperation = 'get' | 'getAll' | 'create' | 'update' | 'delete' | 'archive' | 'unarchive'; export interface HuduResourceConfig { endpoint: string; pluralKey: string | null; singularKey: string | null; bodyKey: string | null; ops: HuduOperation[]; supportsPagination: boolean; label: string; requiresCompanyEndpoint?: boolean; supportsContentField?: boolean; contentField?: string; nameResolutionBaked?: boolean; } export declare const HUDU_RESOURCE_CONFIG: Record; export declare const WRITE_OPERATIONS: HuduOperation[];