export { endsWith } from "./endsWith"; export { padEnd } from "./padEnd"; export { padStart } from "./padStart"; export { repeat } from "./repeat"; export { startsWith } from "./startsWith"; export { stringIncludes } from "./includes"; export { trim } from "./trim"; import { endsWith } from "./endsWith"; import { padEnd } from "./padEnd"; import { padStart } from "./padStart"; import { repeat } from "./repeat"; import { startsWith } from "./startsWith"; import { stringIncludes } from "./includes"; import { trim } from "./trim"; export declare const _String: { endsWith: typeof endsWith; includes: typeof stringIncludes; padEnd: typeof padEnd; padStart: typeof padStart; repeat: typeof repeat; startsWith: typeof startsWith; trim: typeof trim; };