import * as React from "react"; export type DatagridThemeBase = "default" | "light" | "dark"; export declare function normalizeThemeName(theme: string | null | undefined): string; export declare function toThemeClassSuffix(theme: string | null | undefined): string; export declare function resolveThemeBase(theme: string | null | undefined): DatagridThemeBase; export declare function DatagridThemeProvider(props: { theme: string; themeBase?: DatagridThemeBase; portalContainer?: HTMLElement | null; children: React.ReactNode; }): import("react/jsx-runtime").JSX.Element; export declare function useDatagridThemeName(): string; export declare function useDatagridThemeClassSuffix(): string; export declare function useDatagridPortalContainer(): HTMLElement | null; export declare function useDatagridThemeBase(): DatagridThemeBase; //# sourceMappingURL=context.d.ts.map