import type { Field } from '@wix/bex-core'; import type { FieldActionKey } from '../FieldActions'; /** * Per-action disabled tooltips for a schema-source field. Encodes the schema's * data-model rules — only a text field can be the primary/display field, system * fields are locked, the primary field can't be deleted — which used to live in * the shared * FieldActions registry. A key present ⇒ that action renders disabled with the * tooltip; an action with no handler ignores its entry. Tooltips match the * previous (untranslated) registry strings. */ export declare const schemaFieldDisabledTooltips: (field: Field, perms: { canEdit: boolean; canAddFields: boolean; }) => Partial>; //# sourceMappingURL=schemaFieldDisable.d.ts.map