import { Transform } from '../../../classes/Transform'; /** * Converts css style.transform or svg transform to Transform object * Note: This function has a bit different philosophy than transformToStyle because it is trying to extract a Transform from the style in any format and you do not need to declare which format is it. */ export declare function transformFromStyle(cssTransform: string): Transform;