import type { PropsWithChildren } from 'react'; export type ClipRegion = { x: number; y: number; width: number; height: number; } | 'hide'; export type TNativeLayersContext = { clipRegion: ClipRegion | null; setClipRegion: React.Dispatch>; }; export declare const NativeLayersContext: import("react").Context; export declare const NativeLayersProvider: React.FC;