/**
 * Authorization status values returned by the deprecated permission APIs.
 *
 * @deprecated Use {@link https://github.com/zoontek/react-native-permissions react-native-permissions} or
 * {@link https://docs.expo.dev/versions/latest/sdk/notifications/ expo-notifications} for notification permission
 * requests instead. These APIs will be removed in a future major release.
 * See {@link https://github.com/invertase/react-native-firebase/issues/6283 #6283}.
 */
export declare const AuthorizationStatus: {
    readonly NOT_DETERMINED: -1;
    readonly DENIED: 0;
    readonly AUTHORIZED: 1;
    readonly PROVISIONAL: 2;
    readonly EPHEMERAL: 3;
};
export declare const NotificationAndroidPriority: {
    readonly PRIORITY_MIN: -2;
    readonly PRIORITY_LOW: -1;
    readonly PRIORITY_DEFAULT: 0;
    readonly PRIORITY_HIGH: 1;
    readonly PRIORITY_MAX: 2;
};
export declare const NotificationAndroidVisibility: {
    readonly VISIBILITY_SECRET: -1;
    readonly VISIBILITY_PRIVATE: 0;
    readonly VISIBILITY_PUBLIC: 1;
};
//# sourceMappingURL=statics.d.ts.map