/** * Parse a string into an array of numbers * * @param str - the string to parse * @param fn - the function to apply to each element of the array. Used to convert rad => deg. **/ export declare function parseArray(str?: string, fn?: (x: number) => number): number[] | void;