PropertyFieldBaseProps: PropertyBaseProps & {
    actions?: PropertyAction[];
    badge?: boolean;
    required?: boolean;
    size?: SizeProp;
    value?:
        | string
        | number
        | boolean
        | null;
}