import id from '../interfaces/id'; declare const contains: (array: id[], element: id) => boolean; declare const findIndex: (array: id[], find: id) => number; declare const removeFromArray: (array: id[], find: id) => boolean; declare const removeFromArrayAtIndex: (array: id[], index: number) => boolean; export { contains, findIndex, removeFromArray, removeFromArrayAtIndex }; //# sourceMappingURL=id.d.ts.map