@salesforce/core
    Preparing search index...

    Variable ORG_CONFIG_ALLOWED_PROPERTIESConst

    ORG_CONFIG_ALLOWED_PROPERTIES: (
        | {
            description: string;
            encrypted?: undefined;
            hidden?: undefined;
            input?: undefined;
            key: OrgConfigProperties;
        }
        | {
            description: string;
            encrypted?: undefined;
            hidden?: undefined;
            input: { failedMessage: string; validator: (value: AnyJson) => boolean };
            key: OrgConfigProperties;
        }
        | {
            description: string;
            encrypted?: undefined;
            hidden: boolean;
            input: { failedMessage: string; validator: (value: AnyJson) => boolean };
            key: OrgConfigProperties;
        }
        | {
            description: string;
            encrypted: boolean;
            hidden?: undefined;
            input: { failedMessage: string; validator: (value: AnyJson) => boolean };
            key: OrgConfigProperties;
        }
    )[] = ...