/** * Method to split the dataset props from other props. * * Useful for when you want to pass all of the dataset props to a different child than the other props. */ export declare function splitDatasetProps

(props: P): { matchedProps: Pick; remainingProps: P; };