import type { BeanCollection, BeanName } from '../context/context';
import type { GenericBean } from '../context/genericBean';
export interface IRowStyleFeature extends GenericBean<BeanName, BeanCollection> {
    applyRowStyles(): void;
}
