import { ObjectOrValue } from '../ts-helpers'; import { Ref } from '../ref'; export declare type GenericRawProjection = ObjectOrValue; export declare type GenericProjection = { [name: string]: Ref | false | T; }; export declare function capitalize(s: string): string; export declare function indenter(depth?: number, indentation?: string): (str?: string) => string;