/** * Check if a value is a string. * * @param value the value to check. */ export declare function isString(value: unknown | null | undefined): value is string;