import type { StringCase, Suffix } from "./types"; /** * Returns `str` suffixed with `suffix`. Same case and type behavior as * {@link prefix}. */ declare const suffix: (str: T1, suffix: T0, caseMod?: C | undefined) => `${T1}${C extends "snake" ? "_" : ""}${C extends "camel" ? Capitalize : T0}`; export default suffix;