export declare const ConnectorType: {
    readonly GeneralPurpose: "GENERAL_PURPOSE";
    readonly Intune: "INTUNE";
};
export type ConnectorType = (typeof ConnectorType)[keyof typeof ConnectorType];
