import { type NonEmptyString } from 'ts-type-forge'; import { type StringConstraintsResultType, type StringTypeConstraints } from '../../../primitives/index.mjs'; import { type Type } from '../../../type.mjs'; export type { NonEmptyString } from 'ts-type-forge'; /** * The constraints accepted by {@link nonEmptyString}: every {@link string} * constraint except `nonempty`, which is always implied. */ export type NonEmptyStringConstraints = Omit; export declare function nonEmptyString(defaultValue?: string): Type; export declare function nonEmptyString(defaultValue: string, constraints: C): Type>>; //# sourceMappingURL=non-empty-string.d.mts.map