interface ParsePlaceNameResult {
    placeName: string | undefined;
    placeString: string | undefined;
}
export declare const parsePlaceName: (placeString: string | undefined, stateAbbreviation: string | undefined) => ParsePlaceNameResult;
export {};
