/** * Resolves a component value to its sys_id. * If the value is already a sys_id (32-char hex), returns it as-is. * If the value is a component name (case-insensitive), returns the corresponding sys_id. * Otherwise, returns the value unchanged. */ export declare function resolveComponentToSysId(component: string): string; /** * Resolves a sys_id to its human-readable component name (kebab-case). * If the sys_id has a known name, returns the name. * Otherwise, returns the sys_id unchanged. */ export declare function resolveComponentToName(sysid: string): string;