import { ReactNode, FC } from "react"; export interface ViewProps { id: string; popout?: ReactNode; modal?: ReactNode; onTransition?(params: { isBack: boolean; from: string; to: string; }): void; onSwipeBackStart?(): void; onSwipeBackCancel?(): void; children: ReactNode; } declare const View: FC; export default View;