import { IStringReference } from '../../../../../'; export interface IACDataListProperty { name: IStringReference; type: 'string' | 'number' | 'date' | 'enum'; types?: string[]; } export declare const isIACDataListProperty: (d: unknown) => d is IACDataListProperty;