import { styleFn } from "styled-system"; /** * Allows you to pass in a styled-system function and split out * in a typesafe manner, the props that match and do not match * the styled function. */ export declare const splitProps: (mixin: styleFn) => (props: U) => [T, Omit];