import { type PropsWithChildren } from "react"; type ScrollableProps = { padding?: "xs" | "sm" | "md" | "lg" | "xl" | "none"; gap?: number | "xs" | "sm" | "md" | "lg" | "xl"; onRefresh?: () => Promise; } & PropsWithChildren; export default function Scrollable({ children, padding, gap, onRefresh, }: ScrollableProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=scrollable.d.ts.map