import type { CallExpressionShape, Diagnostics, Factory, Record } from '@servicenow/sdk-build-core'; /** * Finds the documentation record for the default language and returns the label value as a string */ export declare function getLabelForDefaultLanguage(documentation: Record[], defaultLanguage: string): string | undefined; export declare function getChoiceRecords(callExpression: CallExpressionShape, aliasedKeys: globalThis.Record, factory: Factory, diagnostics: Diagnostics, defaultLanguage?: string): Promise;