import { Color } from '@nativescript/core/color'; import { Length } from '@nativescript/core/ui/styling/style-properties'; import { DashPathEffect } from './canvas'; export declare function parseCap(value: string | number): globalAndroid.graphics.Paint.Cap; export declare function parseType(value: string | number): globalAndroid.graphics.Paint.Style; export declare function parseJoin(value: string | number): globalAndroid.graphics.Paint.Join; export declare function parseShadow(value: string): { radius: Length; dx: number; dy: number; color: Color; }; export declare function parseDashEffect(value: string): DashPathEffect;