import { Color, ContentView, Property } from '@nativescript/core'; /** * Contains the CardView class, which represents a card view component. */ export declare class CardViewCommon extends ContentView { /** * Gets the native [android widget](https://developer.android.com/reference/android/support/v7/widget/CardView.html) that represents the user interface for this component. Valid only when running on Android OS. */ android: any; /** * Gets the native [ios widget](UIView) that represents the user interface for this component. Valid only when running on iOS. */ ios: any; /** * Gets or set the radius of the card view. */ radius: number; /** * Gets or set the elevation of the card view. ** Valid only when running on Android OS ** */ elevation: number; /** * Gets or set the shadow radius of the card view. ** Valid only when running on iOS ** */ shadowRadius: number; /** * Set the shadow offset width of the card view. ** Valid only when running on iOS ** */ shadowOffsetWidth: number; /** * Set the shadow offset height of the card view. ** Valid only when running on iOS ** */ shadowOffsetHeight: number; /** * Set the shadow color of the card view. ** Valid only when running on iOS ** */ shadowColor: string; /** * Set the shadow opacity of the card view. ** Valid only when running on iOS ** */ shadowOpacity: number; /** * Gets or set the ripple setting. */ ripple: boolean; } export declare const radiusProperty: Property; export declare const elevationProperty: Property; export declare const rippleProperty: Property; export declare const shadowRadiusProperty: Property; export declare const shadowOffsetWidthProperty: Property; export declare const shadowOffsetHeightProperty: Property; export declare const shadowColorProperty: Property; export declare const shadowOpacityProperty: Property;