import { TNodeShape, TNodeType } from '@native-html/transient-render-engine'; /** * A utility to separate box model styles and other styles. Useful when one wants * to wrap a text element in a view to benefit from padding vertical, * borders... etc. * * @param styles - The native styles to split. */ export default function splitBoxModelStyle(style: ReturnType['getNativeStyles']>): { boxModelStyle: Pick; otherStyle: Omit; }; //# sourceMappingURL=splitBoxModelStyle.d.ts.map