export type ProjectInfoResult = { id: string; name: string; orgId: string; defaultLocale: string; currentLocales: string[]; autoApprove?: boolean; }; export type GetProjectInfoOptions = { timeout?: number; };