import { ResourceShorthandInput } from '@lit-protocol/auth-helpers'; import { AuthConfigSchema } from '@lit-protocol/schemas'; import { LitResourceAbilityRequest } from '@lit-protocol/types'; import { z } from 'zod'; export type ShorthandResources = z.infer['resources'] | ResourceShorthandInput; export type AuthConfigV2 = Omit, 'resources'> & { resources: ShorthandResources; }; export declare const processResources: (resources: ShorthandResources) => LitResourceAbilityRequest[];