import { ProvidersService } from 'fccore2'; import { FcinputComponent } from '../fcinput'; import { Sysappbuttons } from 'fccore2'; /** * fc-tlblist列表工具栏 * * 列表工具栏组件。 * * 列表工具栏按钮,如保存、新增、修改、删除等按钮。 * */ export declare class FctlblistComponent extends FcinputComponent { provider: ProvidersService; fcViewActionStrategy: string; _viewAction: any[]; fcButtons: Sysappbuttons[]; fcLayout: string; /**按钮是否禁用*/ fcDisableds: string; /**是否有间隙*/ fcHasGap: string; _hasgap: boolean; constructor(provider: ProvidersService); _afterParentInit(): void; } export declare const ToolbarListLayout: { LEFT: string; CENTER: string; RIGHT: string; }; export declare const ToolbarListAction: { NEXT: string; PREV: string; LISTADD: string; LISTDETELE: string; LISTHELP: string; EXPORT: string; IMPORT: string; };