/** * Safely reads a string value from an unknown type. * Returns the value if it's a string, null if nullable and value is null, * or undefined otherwise. */ export declare function readString(value: unknown, nullable?: boolean): string | null | undefined; //# sourceMappingURL=read-string.d.ts.map