/** * Parses a place value into parts. * It essentially performs a split on the comma character. * @param value The value to parse * @category Value parsers */ export declare const parsePlaceParts: (value: string | null) => string[] | null;