import type { Brand } from 'ts-brand'; export type Whitespace = Brand; /** * Asserts that a value is a `String` containing only whitespace characters. * * @tags guard, strings */ export declare const isWhitespace: (value: unknown) => value is Whitespace;