/** * Returns the array of the path required in getIn (e.g. ['next', 'branch', 'next']), * from the page path (e.g. [1, 1]). */ export declare const resolvePagePath: (pagePath: Array) => Array; /** * Returns the array of the path required in getIn (e.g. ['children', 1, 'children', 2]), * from the grid path (e.g. [1, 2]). */ export declare const resolveGridPath: (gridPath: Array) => Array; /** * Used for inserting values via setIn, so the indices are put in arrays. */ export declare const resolveGridPathInsert: (gridPath: Array) => Array;