import * as React from 'react'; import { ReactElement } from 'react'; import { IConfigToast } from './Toast'; import { IConfigDialog } from './Dialog'; import { IColors } from '../service'; declare type IProps = { dialogConfig?: Pick; toastConfig?: Pick; theme?: 'light' | 'dark'; colors?: [IColors, IColors] /** ['light_colors' , 'dark_colors'] */; children: ReactElement | ReactElement[]; }; export declare const Root: React.FunctionComponent; export {};