import type { AsChildTypes } from "../types"; import type { BindableProps } from "../types"; import { type PropsOf } from "@qwik.dev/core"; type PublicResizableRootProps = { /** Direction in which the contents can be resized */ orientation?: "horizontal" | "vertical"; } & PropsOf<"div"> & BindableProps<{ /** When true, prevents resizing of contents */ disabled: boolean; }>; /** Root container component that manages the resizable contents and handles */ export declare const ResizableRoot: import("@qwik.dev/core").Component; export {};