export declare enum CustomerTableColumnType { Id = "Id", Text = "Text", Password = "Password", Number = "Number", File = "File", Date = "Date" } export declare type ProjectDatabaseTableColumn = { name: string; type: CustomerTableColumnType; displayable: boolean; fixed: boolean; }; export declare enum KitType { Icon = "icon", Image = "image", Font = "font" } export declare type ProjectDatabaseTableDefinition = { name: string; displayable: boolean; columns: ProjectDatabaseTableColumn[]; }; export declare type LocalizationContents = { zhCN?: string; en?: string; };