import { EventEmitter, OnInit } from '@angular/core'; export interface SimpleFormSchema { name: string; /** 默认为 name */ label?: string; required?: boolean; type?: 'i18nInput' | 'input' | 'textarea' | 'password' | 'checkbox' | 'select'; placeholder?: string; options?: string[]; showIf?: () => boolean; } export declare class SimpleFormComponent implements OnInit { schemas: SimpleFormSchema[]; valueObject: {}; /** 密码显示为可重置状态,编辑时可使用 */ passwordToBeReset: boolean; init: EventEmitter<{}>; form: any; constructor(); ngOnInit(): void; isValid(): any; }