declare const intersectionOf: <T>(arrays: T[][]) => T[];
declare const capitalize: (str: string) => string;

export { capitalize, intersectionOf };
