export declare const getCredits: ({ operation, baseUrl, userID, userName, tenant, }: {
    operation?: string | undefined;
    baseUrl: string;
    userID?: string | null | undefined;
    userName?: string | null | undefined;
    tenant: string;
}) => Promise<{
    enough: boolean;
    required: number;
}>;
