/* eslint-disable */ import type { DistributiveOmit, HTMLPandaProps, JsxStyleProps, Pretty } from '../types'; declare const isCssProperty: (value: string) => boolean; type CssPropKey = keyof JsxStyleProps type OmittedCssProps = Pretty> declare const splitCssProps: (props: T) => [JsxStyleProps, OmittedCssProps] export { isCssProperty, splitCssProps };