import React, { ReactNode } from "react"; export type CellGroupStyleProps = { hasTitle: boolean; }; export type CellGroupContextType = { /** * A boolean value indicating whether or not the contexed cell is first in the group or not. */ isFirstCell: boolean; /** * A boolean value indicating whether or not the contexed cell is last in the group or not. */ isLastCell: boolean; }; export declare const CellGroupContext: React.Context; export type CellGroupProps = { /** * The title of the cell group. */ title?: string; /** * Extra component given the remaining space after the title size has been calculated. */ adornment?: ReactNode; }; export declare const CellGroup: ({ title, adornment, children, }: React.PropsWithChildren) => React.JSX.Element;