15 lines
565 B
TypeScript
15 lines
565 B
TypeScript
import React from 'react';
|
|
import { ExtendedStackNavigationOptions } from '../../layouts/StackClient';
|
|
declare function ModalStackRouteDrawer({ routeKey, options, dismissible, renderScreen, onDismiss, themeColors, }: {
|
|
routeKey: string;
|
|
options: ExtendedStackNavigationOptions;
|
|
renderScreen: () => React.ReactNode;
|
|
onDismiss: () => void;
|
|
themeColors: {
|
|
card: string;
|
|
background: string;
|
|
};
|
|
dismissible?: boolean;
|
|
}): React.JSX.Element;
|
|
export { ModalStackRouteDrawer };
|
|
//# sourceMappingURL=ModalStackRouteDrawer.d.ts.map
|