/**
* Removes the front of a string if it exists
* @paramstr - the string to remove the front of
* @paramfront - the string to remove from the front of str
* @returns str with front removed from the front
*/exportdeclareconstremoveFront: (str: string, front: string) =>string;