export declare type PropList = Extract[] | string; export declare type SubscribeCallback = (el: any, props: PropList) => () => void; export declare type ConsumerRenderer = (subscribe: SubscribeCallback, renderer: Function) => any;