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