import { LimeType, LimeProperty, PropertyType as BasePropertyType, Acl as BaseAcl, isRelation as baseIsRelation, isSingleRelation as baseIsSingleRelation, isDate as baseIsDate, isString as baseIsString, isFloat as baseIsFloat, Option } from '../../lime-web-components/src'; /** * @deprecated has been renamed to better align with the Python class from * `lime-core`. Use {@link LimeType} from `@limetech/lime-web-components` instead. */ export interface Limetype extends LimeType { [key: string]: any; } /** * @deprecated use `Record instead` */ export interface Limetypes { [name: string]: Limetype; } /** * @deprecated has been renamed to better align with the Python class from * `lime-core`. Use {@link LimeProperty} from `@limetech/lime-web-components` instead. */ export interface Property extends LimeProperty { } /** * @deprecated has been renamed to better align with the Python class from * `lime-core`. Use {@link Option} from `@limetech/lime-web-components` instead. */ export interface PropertyOption extends Option { } /** * @deprecated use `Record instead` */ export interface Properties { [name: string]: Property; } /** * @deprecated use {@link BasePropertyType PropertyType} from `@limetech/lime-web-components` instead */ export declare type PropertyType = BasePropertyType; /** * @deprecated use {@link BaseAcl Acl} from `@limetech/lime-web-components` instead */ export interface Acl extends BaseAcl { } /** * @deprecated use {@link baseIsRelation isRelation} from `@limetech/lime-web-components` instead */ export declare const isRelation: typeof baseIsRelation; /** * @deprecated use {@link baseIsSingleRelation isSingleRelation} from `@limetech/lime-web-components` instead */ export declare const isSingleRelation: typeof baseIsSingleRelation; /** * @deprecated use {@link baseIsDate isDate} from `@limetech/lime-web-components` instead */ export declare const isDate: typeof baseIsDate; /** * @deprecated use {@link baseIsString isString} from `@limetech/lime-web-components` instead */ export declare const isString: typeof baseIsString; /** * @deprecated use {@link baseIsFloat isFloat} from `@limetech/lime-web-components` instead */ export declare const isFloat: typeof baseIsFloat;