import type { Pick_, Value } from '../../index.js'; /** Omit call, construct and index signatures */ export type OmitSignatures = T extends object ? Pick_> : never; type GetKeys = Value<{ [k in keyof T as string extends k ? never : number extends k ? never : symbol extends k ? never : k]: k; }>; export {}; //# sourceMappingURL=OmitSignatures.d.ts.map