import { ComponentChild } from "preact";
type Props = {
    children: Array<ComponentChild>;
};
declare const ResizableRows: ({ children }: Props) => import("preact").JSX.Element;
export default ResizableRows;
