export type PartialKeys = Omit & Partial>; export type RequiredKeys = Omit & Required>; export type Option = T | null; export type Opaque = T & { __opaque__: K; }; export type TransactionPriority = 'dynamic' | 'none' | 'normal' | 'high' | 'turbo' | number;