gather-content-ui
Version:
GatherContent UI Library
13 lines • 525 B
TypeScript
import type { PropsWithChildren } from "react";
export interface ResizableProps {
containerWidth?: number | string;
id?: string;
initialWidth?: number | string;
minResizableWidth?: number | string;
maxResizableWidth?: number | string;
onResizeComplete?: (resizedTo: number) => void;
rememberPosition?: boolean;
useGutterOffset?: boolean;
}
export declare function Resizable(props: PropsWithChildren<ResizableProps>): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=index.d.ts.map