import { CoreTypes } from '../../core-types';
import { Color } from '../../color';
export interface StrokeCSSValues {
    width: CoreTypes.LengthType;
    color: Color;
}
/**
 * Parse a string into StrokeCSSValues
 * https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-text-stroke
 * @param value
 */
export declare function parseCSSStroke(value: string): StrokeCSSValues;
