import { Predicate } from './Predicate.js'; /** * @desc Ensures that the `value` is a {@link String}. * * @example * import { ensure, isString, TinyType } from 'tiny-types'; * * class FirstName extends TinyType { * constructor(public readonly value: string) { * ensure('FirstName', value, isString()); * } * } * * @returns {Predicate} */ export declare function isString(): Predicate; //# sourceMappingURL=isString.d.ts.map