import type { AsChildTypes } from "../types"; import { type PropsOf } from "@qwik.dev/core"; interface PublicResizableContentProps extends Omit, "onResize$"> { height?: number; width?: number; minWidth?: number; maxWidth?: number; minHeight?: number; maxHeight?: number; collapsible?: boolean; collapsed?: boolean; collapsedSize?: number; collapseThreshold?: number; onResize$?: (size: number) => void; onCollapse$?: () => void; onExpand$?: () => void; } /** A resizable content component that can be adjusted using a ResizableHandle */ export declare const ResizableContent: import("@qwik.dev/core").Component; export {};