import type { ReactNode } from 'react'; /** Action definition shown on a property title or actions menu. */ export interface PropertyAction { disabled?: boolean; icon?: ReactNode; name: string; onClick?: () => void; } //# sourceMappingURL=Action.d.ts.map