type sn = string | number; export type Option = { label: sn; value: sn; } & Record; export type WillOption = sn | Partial