import { Entity } from './Entity'; import { Property } from './Property'; interface LiteralConstructorProps { name: string; properties: { [index: string]: Omit; }; } export declare class Literal extends Entity { constructor(props: LiteralConstructorProps); } export {};