import React from 'react';
import { AvatarSize } from './Avatar.enums';
export declare type Sizes = typeof AvatarSize[keyof typeof AvatarSize];
export interface AvatarProps {
    logo: string;
    size: Sizes;
    border?: boolean;
    onClick?: () => void;
    style?: React.CSSProperties;
}
