import React, { HTMLAttributes } from "react";
export type VisibleFromBreakpoint = "sm" | "md" | "lg" | "xl" | "2xl";
export interface IEntityCardPropertyProps extends HTMLAttributes<HTMLDivElement> {
    listOrder?: number;
    listWidth?: string | number;
    visibleFromBreakpoint?: VisibleFromBreakpoint;
}
export declare const EntityProperty: React.FC<IEntityCardPropertyProps>;
//# sourceMappingURL=EntityProperty.d.ts.map