export interface AppwriteModuleOptions {
    endpoint: string;
    projectId: string;
    databaseId: string;
    awsRegion: string;
    useEnvVarsForSecrets: boolean;
    appwriteApiKeyName?: string;
    showEnvironmentVars?: boolean;
    deleteRemovedAttributes?: boolean;
}
