import React from 'react'; import type { ViewStyle } from 'react-native'; interface DrawerProps { visible?: boolean; side?: 'left' | 'right'; width?: number; style?: ViewStyle; _tokens?: Record; _motion?: Record; children?: React.ReactNode; onClose?: () => void; testID?: string; } export declare function Drawer({ visible, side, width, style, _tokens, _motion, children, onClose, testID }: DrawerProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=drawer.d.ts.map