import React from "react";
import { Sheet as SheetType } from "@light-sheet/core";
import "./index.css";
import { useUIapi } from "../../hooks/useUIapi";
type Props = {
    sheet: SheetType;
    refLayout: React.RefObject<ReturnType<typeof useUIapi> | null>;
};
declare const Sheet: React.FC<Props>;
export default Sheet;
