import { View, Property } from 'tns-core-modules/ui/core/view'; export declare class Guid { static next(): string; } export declare enum PageMode { SINGLE = 0, DOUBLE = 1, AUTOMATIC = 2, } export declare type DOWNLOAD_STATUS = 'downloading' | 'completed' | 'failed'; export declare function boolParse(value: any): any; export declare const srcProperty: Property; export declare const documentTitleProperty: Property; export declare const selectedIndexProperty: Property; export declare class TNSPSPDFView extends View { src: string; progress: number; documentTitle: string; selectedIndex: number; }