import { CoreTypes } from '../../core-types';
export declare function cleanupImportantFlags(value: unknown, propertyName: string): string;
export declare function parseCSSCommaSeparatedListOfValues(value: string): string[];
export declare function parseCSSShorthand(value: string): {
    values: Array<CoreTypes.LengthType>;
    color: string;
    inset: boolean;
};
