export function describePresence(valueToDescribe: any, { overrideProvidedText, overrideNotProvidedText }?: {
    overrideProvidedText?: string | undefined;
    overrideNotProvidedText?: string | undefined;
}): string;
export function attributesToString(sourceObject?: Object, attributesWithValues?: Array<string>, attributesWithoutValues?: Array<string>): string;
export function describeAttributes(sourceObject: Object, attributesWithValues: Array<string>, attributesWithoutValues: Array<string>): string;
