export declare const units: string[]; /** * Will append `'px'` to a property value if the property is not unitless. * This is to replicate how Emotion handles this. * * @param name CSS property name * @param value CSS property value */ export declare function addUnitIfNeeded(name: string, value: null | undefined | boolean | string | number): any;