import type { SDKPropsMappings } from "@local-logic/types"; export type SDKKeys = keyof SDKPropsMappings; export interface On { change: SDKPropsMappings[T]["onChange"]; } export type Options = Pick< SDKPropsMappings[T], "apiKey" | "globalOptions" | "options" >; export type { SDKPropsMappings };