export type WithMark = {
    [prop: string]: any;
    marks?: Array<any>;
    type: any;
};
export type WithAppliedMark<T, M> = T & {
    marks?: Array<M>;
};
