export declare type EntityAttributeValue = string | number | boolean | null;
export declare type WebEntity = {
    [name: string]: EntityAttributeValue | WebEntity | WebEntity[];
};
export interface Entity extends WebEntity {
    logicalName: string;
    id: string;
}
