export declare const AliasState: { readonly ACTIVE: "Active"; readonly PENDING_DELETION: "PendingDeletion"; }; export type AliasState = (typeof AliasState)[keyof typeof AliasState]; export declare const BatchGetPolicyErrorCode: { readonly POLICY_NOT_FOUND: "POLICY_NOT_FOUND"; readonly POLICY_STORE_ALIAS_NOT_FOUND: "POLICY_STORE_ALIAS_NOT_FOUND"; readonly POLICY_STORE_NOT_FOUND: "POLICY_STORE_NOT_FOUND"; }; export type BatchGetPolicyErrorCode = (typeof BatchGetPolicyErrorCode)[keyof typeof BatchGetPolicyErrorCode]; export declare const PolicyType: { readonly STATIC: "STATIC"; readonly TEMPLATE_LINKED: "TEMPLATE_LINKED"; }; export type PolicyType = (typeof PolicyType)[keyof typeof PolicyType]; export declare const Decision: { readonly ALLOW: "ALLOW"; readonly DENY: "DENY"; }; export type Decision = (typeof Decision)[keyof typeof Decision]; export declare const ResourceType: { readonly IDENTITY_SOURCE: "IDENTITY_SOURCE"; readonly POLICY: "POLICY"; readonly POLICY_STORE: "POLICY_STORE"; readonly POLICY_STORE_ALIAS: "POLICY_STORE_ALIAS"; readonly POLICY_TEMPLATE: "POLICY_TEMPLATE"; readonly SCHEMA: "SCHEMA"; }; export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType]; export declare const CedarVersion: { readonly CEDAR_2: "CEDAR_2"; readonly CEDAR_4: "CEDAR_4"; }; export type CedarVersion = (typeof CedarVersion)[keyof typeof CedarVersion]; export declare const PolicyEffect: { readonly FORBID: "Forbid"; readonly PERMIT: "Permit"; }; export type PolicyEffect = (typeof PolicyEffect)[keyof typeof PolicyEffect]; export declare const DeletionProtection: { readonly DISABLED: "DISABLED"; readonly ENABLED: "ENABLED"; }; export type DeletionProtection = (typeof DeletionProtection)[keyof typeof DeletionProtection]; export declare const ValidationMode: { readonly OFF: "OFF"; readonly STRICT: "STRICT"; }; export type ValidationMode = (typeof ValidationMode)[keyof typeof ValidationMode]; export declare const DeletionMode: { readonly HARD_DELETE: "HardDelete"; readonly SOFT_DELETE: "SoftDelete"; }; export type DeletionMode = (typeof DeletionMode)[keyof typeof DeletionMode]; export declare const OpenIdIssuer: { readonly COGNITO: "COGNITO"; }; export type OpenIdIssuer = (typeof OpenIdIssuer)[keyof typeof OpenIdIssuer];