import { ReplaceAllIf } from '../typescript'; /** * Replaces all underscores (`_`) in the given text with spaces (` `). * * @param text - The input text with underscores to be replaced. * * @returns The modified text with spaces instead of underscores. * * @template T - The type of the input text. */ export declare function underscorePerSpace(text: T): ReplaceAllIf; /** * Replaces all spaces (` `) in the given text with underscores (`_`). * * @param text - The input text with spaces to be replaced. * * @returns The modified text with underscores instead of spaces. * * @template T - The type of the input text. */ export declare function spacePerUnderScore(text: T): ReplaceAllIf; /** * Replaces all hyphens (`-`) in the given text with spaces (` `). * * @param text - The input text with hyphens to be replaced. * * @returns The modified text with spaces instead of hyphens. * * @template T - The type of the input text. */ export declare function hyphenPerSpace(text: T): ReplaceAllIf; /** * Replaces all spaces (` `) in the given text with hyphens (`-`). * * @param text - The input text with spaces to be replaced. * * @returns The modified text with hyphens instead of spaces. * * @template T - The type of the input text. */ export declare function spacePerHyphen(text: T): ReplaceAllIf;