interface StartsWith { /** * check if string starts with start * @param string * @param start * @example startsWith('foo', 'f'); */ (string: string, start: string): void; } export declare const startsWith: StartsWith, notStartsWith: StartsWith; export {}; //# sourceMappingURL=starts-with.d.ts.map