/** * 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 { type PropsWithChildren } from 'react'; import { type SheetContext } from './context'; import { ActionSheetRef } from '@crossed/sheet'; export type SheetProps = PropsWithChildren<{ open?: boolean; defaultValue?: boolean; onOpenChange?: (_value: boolean) => void; offset?: number; }> & Pick; export declare const Root: import("react").ForwardRefExoticComponent<{ open?: boolean; defaultValue?: boolean; onOpenChange?: (_value: boolean) => void; offset?: number; } & { children?: import("react").ReactNode | undefined; } & Pick & import("react").RefAttributes>; //# sourceMappingURL=Root.d.ts.map