/** * Extracts chakra-ui style-props from an object, separating them from other props * @param props The props object to separate * @returns A tuple containing [styleProps, otherProps] */ export declare function extractStyleProps(props: T): [Record, Omit];