import { Source } from './source';
import { AvatarSource } from './avatar-source.enum';
/**
 *  Custom source implementation (with no cache).
 *  return custom image as an avatar
 *
 */
export declare class CustomNoCache implements Source {
    sourceId: string;
    readonly sourceType: AvatarSource;
    constructor(sourceId: string);
    getAvatar(): string;
}
