import React from "react"; import { type FlexStyle, type ViewProps } from "react-native"; import { useDraggableStack, type UseDraggableStackOptions } from "../hooks/useDraggableStack"; export type DraggableStackProps = Pick & Pick & { direction?: FlexStyle["flexDirection"]; gap?: number; }; export type DraggableStackHandle = Pick, "refreshOffsets">; export declare const DraggableStack: React.ForwardRefExoticComponent & Pick & { direction?: FlexStyle["flexDirection"]; gap?: number; } & { children?: React.ReactNode | undefined; } & React.RefAttributes>;