import * as React from 'react'; import { GridLayoutAttributes, NSVElement, NativeScriptProps } from 'react-nativescript'; import { Color, View } from '@nativescript/core'; import { Drawer as NativeScriptDrawer } from '..'; export declare function registerDrawer(): void; interface DrawerAttributes extends GridLayoutAttributes { backdropColor?: Color; gestureEnabled?: boolean; leftDrawer?: View; mainContent?: View; } declare global { namespace JSX { interface IntrinsicElements { drawer: NativeScriptProps; } } } export declare const Drawer: React.ForwardRefExoticComponent, "nodeRole" | "children" | "style" | "key" | keyof DrawerAttributes> & React.RefAttributes>>; export {};