@twilio/flex-ui
Version:
Twilio Flex UI
24 lines (23 loc) • 857 B
TypeScript
import { DynamicContentStore } from "../../flex-ui-core/src";
import * as React from "react";
import { RootContainerChildrenKeys, RootContainerChildrenProps } from "./RootContainer.definitions";
/**
* @classdesc This is a container for RootContainer.
* Can be themed with `Theme.RootContainer` in [Theme](Theme).
* @component
* @hideconstructor
* @category Components / Programmable
* @subcategory Components
*/
export declare class RootContainer extends React.PureComponent {
static readonly displayName = "RootContainer";
/**
* Dynamic content store
*
* @static
* @type {DynamicContentStore<RootContainer.RootContainerChildrenProps, RootContainerChildrenKeys>}
* @readonly
*/
static readonly Content: DynamicContentStore<RootContainerChildrenProps, RootContainerChildrenKeys>;
render(): JSX.Element;
}