export declare type StringFormatValueSelector = (obj: T) => string; export interface StringFormatDescriptor { [token: string]: StringFormatValueSelector; } export declare function getStringFormat(obj: T, format: string, formatDescriptor: StringFormatDescriptor, fallbackObj?: T): string;