declare module '../expect.types' { interface StringExpect { /** * check if string starts with other string * @param start * @example startsWith('foo', 'f'); */ startWith(start: string): this; } } export {}; //# sourceMappingURL=start-with.d.ts.map