import React from 'react'; import { GestureResponderEvent, View, StyleProp, ViewStyle } from 'react-native'; import type { Theme } from '../../types'; type Props = React.ComponentPropsWithRef & { active?: boolean; children?: React.ReactNode; onClose?: (evt: GestureResponderEvent) => void; onMaximize?: (evt: GestureResponderEvent) => void; onMinimize?: (evt: GestureResponderEvent) => void; style?: StyleProp; theme: Theme; title?: string; }; declare const _default: React.ComponentType | "onClose" | "onMaximize" | "onMinimize"> & { theme?: import("@callstack/react-theme-provider").$DeepPartial | undefined; }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics & (({ active, children, onClose, onMaximize, onMinimize, style, theme, title, ...rest }: Props) => React.JSX.Element), {}>; export default _default; //# sourceMappingURL=Window.d.ts.map