import type { Brand } from 'ts-brand'; export type VisibleString = Brand; /** * Asserts that a value is a valid `String` containing at least one character which is not whitespace. * * @tags guard, strings */ export declare const isVisibleString: (value: unknown) => value is VisibleString;