export interface CommandOutputProfile { defaultFields: string[]; description: string; fieldGroups?: Record; } export interface ResolvedCommandOutputProfile extends CommandOutputProfile { commandId: string; source: 'crud' | 'fallback' | 'override'; } export declare function getCommandOutputProfile(commandId: string): ResolvedCommandOutputProfile; export declare function projectCommandOutput(input: { commandId: string; data: unknown; extraFields?: string[]; full?: boolean; }): unknown;