import { Branded } from 'schemata-ts/brand'; import { SchemaExt } from 'schemata-ts/SchemaExt'; interface NonEmptyStringBrand { readonly NonEmptyString: unique symbol; } /** * A string with length greater than one * * @since 1.0.0 * @category Model */ export declare type NonEmptyString = Branded; /** * @since 1.0.0 * @category Model */ export declare type NonEmptyStringS = SchemaExt; /** * A string with length greater than one * * @since 1.0.0 * @category Schema */ export declare const NonEmptyString: NonEmptyStringS; export {}; //# sourceMappingURL=NonEmptyString.d.ts.map