/**
 * Removes the front of a string if it exists
 * @param str - the string to remove the front of
 * @param front - the string to remove from the front of str
 * @returns str with front removed from the front
 */
export declare const removeFront: (str: string, front: string) => string;
