import { List } from 'immutable'; import { DraftDecoratorType } from '../../types'; interface MultiDecoratorType { decorators: List; } declare function MultiDecorator(this: MultiDecoratorType, decorators: DraftDecoratorType[]): void; export default MultiDecorator;