import { EntityCard } from "./EntityCard";
import { EntityGroup } from "./EntityGroup";
import { EntityProperty } from "./EntityProperty";
import { EntitySeparator } from "./EntitySeparator";
export interface IEntity {
    Group: typeof EntityGroup;
    Card: typeof EntityCard;
    Property: typeof EntityProperty;
    Separator: typeof EntitySeparator;
}
export declare const Entity: IEntity;
export declare const useEntityGroupContext: () => import("./EntityGroup").IEntityGroupContext;
//# sourceMappingURL=index.d.ts.map