import type { FieldExtensionType } from '../field';
export declare type Field = {
    id: string;
    apiId: string;
    description: string | null;
    displayName: string;
    isList: boolean;
    isLocalized: boolean;
    isRequired: boolean;
    isUnique: boolean;
    type: keyof typeof FieldExtensionType;
};
