export interface GetPhoneInfoResult {
    screenWidth: number;
    screenHeight: number;
    brand: string;
    model: string;
    version: string;
    netInfo: string;
    operatorType: string;
    statusBarHeight: number;
}
declare function getPhoneInfo(): Promise<GetPhoneInfoResult>;
declare namespace getPhoneInfo {
    var version: {
        android: string;
        ios: string;
    };
}
export default getPhoneInfo;
