/** * A list of preset regexes for word breaks */ export declare const PRESETS: { /** Breaks on `/`, '.' and `-` for urls or file paths */ readonly path: RegExp; /** * Breaks on capitals, `_` and `.` for properties written in * camel, pascal or snake case */ readonly property: RegExp; }; //# sourceMappingURL=constants.d.ts.map