/** * Narrows `v` to `string` when it is a non-empty string. Useful for * validating JSON fields from authorization-server responses, where * the spec declares a field as "string" but servers occasionally * return `""` / `null` / missing. */ export declare function isNonEmptyString(v: unknown): v is string;