export declare const ArtsyKeyboardAvoidingViewContext: import("react").Context<{ isPresentedModally: boolean; isVisible: boolean; /** * bottom offset is used when the screen is presented modally to account for * any extra padding at the bottom of the screen (i.e. added for safe area insets) */ bottomOffset: number; }>; export declare const ArtsyKeyboardAvoidingView: ({ children }: { children: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element;