import React, { type ReactNode } from 'react'; import { activityBorderDecoratorTypeName, type ActivityBorderDecoratorMiddleware } from './ActivityBorderDecoratorMiddleware'; type DecoratorMiddlewareInit = typeof activityBorderDecoratorTypeName; export type DecoratorComposerComponent = (props: Readonly<{ children?: ReactNode; middleware?: DecoratorMiddleware[]; }>) => React.JSX.Element; export type DecoratorMiddleware = (init: DecoratorMiddlewareInit) => ReturnType | false; declare const _default: () => DecoratorComposerComponent; export default _default; //# sourceMappingURL=createDecoratorComposer.d.ts.map