/** * Copyright (c) Paymium. * * This source code is licensed under the MIT license found in the * LICENSE file in the root of this projects source tree. */ import { ForwardedRef, RefObject } from 'react'; import type { SharedValue } from 'react-native-reanimated'; import { ActionSheetRef } from '@crossed/sheet'; export type SheetContext = { open: boolean; setOpen: (_value: boolean) => void; dismissOnOverlayPress?: boolean; hideHandle?: boolean; isMove: SharedValue; height: SharedValue; onClose: () => void; snapInitialHeight: SharedValue; offset: number; ref: ForwardedRef; actionSheetRef: RefObject; }; export declare const sheetContext: import("react").Context; export declare const useSheetContext: () => SheetContext; //# sourceMappingURL=context.d.ts.map