import type { DividerProps as SurfaceDividerProps, GridProps as SurfaceGridProps, ScrollViewProps as SurfaceScrollViewProps, ViewProps as SurfaceViewProps, } from '@ankhorage/surface'; import type React from 'react'; import type { ZoraBaseProps } from './base'; export type ZoraContentWidth = 'narrow' | 'default' | 'wide'; export interface ViewProps extends ZoraBaseProps, Omit {} export interface ScrollViewProps extends ZoraBaseProps, Omit {} export interface DividerProps extends ZoraBaseProps, Omit {} export interface GridProps extends ZoraBaseProps, Omit {} export interface AppShellProps extends ZoraBaseProps { children?: React.ReactNode; header?: React.ReactNode; footer?: React.ReactNode; overlay?: React.ReactNode; } export interface ScreenProps extends ZoraBaseProps { children?: React.ReactNode; footer?: React.ReactNode; scroll?: boolean; width?: ZoraContentWidth; }