import { ShadowedLabel as ShadowedLabelDefinition, TextShadow } from './index';
import { CssProperty, Label, Style } from '@nativescript/core';
export declare class ShadowedLabelCommon extends Label implements ShadowedLabelDefinition {
    get textShadow(): any;
    set textShadow(value: any);
}
export declare const textShadowProperty: CssProperty<Style, string | TextShadow>;
declare module '@nativescript/core/ui/styling/style' {
    interface Style {
        textShadow: string | TextShadow;
    }
}
