/** * @description 토스 웹뷰 환경에서 SafeArea 값을 사용하기 위한 유틸리티입니다. * * ```ts * const SafeArea: { * Top: string; * Left: string; * Right: string; * Bottom: string; * } * ``` * * @example * console.log(SafeArea.Top) // 'var(--toss-safe-area-top, env(safe-area-inset-top, 0px))' */ export declare const SafeArea: { Top: string; Left: string; Right: string; Bottom: string; };