import type React from "react"; interface ResizableProps { children: React.ReactNode; containerWidth?: string; onResize?: (width: number) => void; showContainerOutline?: boolean; } export declare const Resizable: ({ children, containerWidth, onResize, showContainerOutline, }: ResizableProps) => import("react/jsx-runtime").JSX.Element; export declare const WidthText: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit, "ref"> & React.RefAttributes, "ref"> & { ref?: React.Ref; }, never>> & string & Omit>, keyof React.Component>; export declare const ResizeHandle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLDivElement>, never>> & string; export {};