import { Predicate } from './Predicate.js'; /** * @desc Ensures that the `value` starts with a given prefix. * * @example * import { ensure, startsWith, TinyType } from 'tiny-types'; * * class Username extends TinyType { * constructor(public readonly value: string) { * super(); * * ensure('Username', value, startsWith('usr')); * } * } * * @param {string} prefix * * @returns {Predicate} */ export declare function startsWith(prefix: string): Predicate; //# sourceMappingURL=startsWith.d.ts.map