/** * Jira Custom Field Management * * Functions for creating and managing custom fields * Note: Creating custom fields typically requires admin permissions */ export interface CustomField { id: string; name: string; type: string; description?: string; searcherKey?: string; } /** * Get all custom fields */ export declare function getAllCustomFields(): Promise; /** * Get custom fields for a project */ export declare function getProjectCustomFields(projectKey: string): Promise; /** * Find custom field by name */ export declare function findCustomFieldByName(name: string, projectKey?: string): Promise; /** * Create a custom field * Note: This requires Jira admin permissions and may not be available via REST API * For most cases, custom fields should be created via Jira UI */ export declare function createCustomField(name: string, type: "text" | "number" | "date" | "select" | "user" | "url", description?: string): Promise; //# sourceMappingURL=custom-fields.d.ts.map