type AllowedValuesSummary = { values: string[]; hiddenCount: number; formatted: string; }; export declare function summarizeAllowedValues(values: ReadonlyArray): AllowedValuesSummary | null; export declare function appendAllowedValuesHint(message: string, summary: AllowedValuesSummary): string; export {};