import type * as Core from "@1771technologies/lytenyte-core/types"; import { type PropsWithChildren, type ReactNode } from "react"; import type { RowSource } from "@1771technologies/lytenyte-shared"; import type { Grid } from "@1771technologies/lytenyte-core"; export declare const Root: (props: PropsWithChildren & (undefined extends Spec["api"] ? object : { apiExtension: Spec["api"]; })>) => ReactNode; export declare namespace Root { type GridSpec = object, S extends RowSource = RowSource, E extends Record = object> = Grid.GridSpec; type Props = Grid.Props; type API = Core.API; type Column = Core.Column; }