import { IElementDto } from './ava-models';
export interface IFunctionViewLine {
    name: string;
    func: (element: IElementDto) => boolean;
    view: IViewLine;
}
export interface IViewLine {
    iconName?: string;
    iconColor?: string;
    textBold?: string;
    textColor?: string;
}
