/** * Trims the start and the end of a string by whitespace (default), specified string, or array of possible strings * * @since v0.0.1 * @category String * @param {'start' | 'end'} type - The type of trim to do * @param {string} value - The string to trim * @param {string | string[]} [trim] - The string or array of possible strings to trim from the start and end * @param {boolean} [multiline=false] - Whether or not the chars should be trimmed from the start and end of every line * @returns {string} */ export declare const commonTrim: (type: 'start' | 'end', value: string, trim?: string | string[], multiline?: boolean) => string;