/**
 * This and hasNotch functions are the same,
 * just want to make two functions with different names
 * hasNotch is more accurate name
 */
declare const hasNotch: () => boolean;
declare const hasNotchOnly: () => boolean;
declare const hasDynamicIsland: () => boolean;
declare const getStatusBarHeight: () => number;
export { getStatusBarHeight, hasNotch, hasNotchOnly, hasDynamicIsland };
