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