import { UnitValue, UnitValueOriented, ColorGradientValue } from '../domains/entities/general.entity';
export declare const string2unitValueField: (value: any) => any;
export declare const string2unitValue: (data: string) => UnitValue | undefined;
export declare const string2uniValueOriented: (data: string) => UnitValueOriented | undefined;
export declare const string2UnitValueOrientedDetail: (key: string, data: string, currentValue: any) => any;
export declare const string2stringOriented: (data: string) => {
    top: string;
    right: string;
    bottom: string;
    left: string;
};
export declare const string2Image: (data: string) => {
    extension: string;
    fileName: string;
    height: number;
    id: string;
    mimeType: string;
    url: string;
    width: number;
} | undefined;
export declare const string2Video: (data: string) => {
    url: string;
    id: string;
    title: string;
    status: string;
    thumbnail: string;
    height: number;
    width: number;
    aspectRatio: number;
    type: string;
};
export declare const parseValueCssAttribute: (key: string, currentValue: any, value: string) => any;
export declare const string2Position: (position: string) => {
    x: number;
    y: number;
};
export declare const string2Gradient: (gradient: string) => ColorGradientValue;
