274 BTypeScriptView Raw
1import { StorageAccessLevel } from '@aws-amplify/core';
2type ResolvePrefixOptions = {
3 accessLevel: StorageAccessLevel;
4 targetIdentityId?: string;
5};
6export declare const resolvePrefix: ({ accessLevel, targetIdentityId, }: ResolvePrefixOptions) => string;
7export {};