import { Key } from '../foundation/key'; import { InheritedWidget, StatelessWidget } from './framework'; import { MXWidget } from 'mxflutter-base'; declare abstract class InheritedTheme extends InheritedWidget { } export { InheritedTheme }; declare class _CaptureAll extends StatelessWidget { themes: Array; child: MXWidget; constructor(namedParameters?: { key?: Key; themes?: Array; child?: MXWidget; }); } export { _CaptureAll };