/**
* Extracts the first character from the first and last words in a string.
*
* Splits at: white space, comma, dot, pipe, underscore, dash.
*
* @returns Extracted characters as string.
*/declarefunctioninitials(text?: string): string;
export default initials;