import { OperationFields } from './typeOptions'; export declare type SelectActivityLogTypeReturnType = { [P in keyof S]: P extends keyof ActivityLogTypeReturnType ? ActivityLogTypeReturnType[P] : ActivityLogTypeReturnType; }; export interface ActivityLogTypeFields extends OperationFields { account_id?: boolean; created_at?: boolean; /** * The item's column values in string form. */ data?: boolean; entity?: boolean; event?: boolean; id?: boolean; user_id?: boolean; } export interface ActivityLogTypeReturnType { account_id: string; created_at: string; /** * The item's column values in string form. */ data: string; entity: string; event: string; id: string; user_id: string; } //# sourceMappingURL=activityLogType.d.ts.map