// Type definitions for moonstone/Region import * as React from "react"; type Omit = Pick>; type Merge = Omit> & N; export interface RegionProps { /** * Title placed within an instance of before the children. */ title: string; /** * The aria-label for the region. * * If unset, it defaults to the value of `title` */ "aria-label"?: string; /** * Contents of the region. */ children?: React.ReactNode; } /** * A component for grouping other components. */ export class Region extends React.Component< Merge, RegionProps> > {} export default Region;