import * as React from 'react';
import { Props as LabelLayoutProps } from './LabelLayout';
import { Props as LabelRightProps } from './LabelRight';
import { AvatarProps } from '../../1-inline/Avatar';
export interface Props extends LabelLayoutProps, LabelRightProps {
    avatar: AvatarProps;
}
export declare const AvatarLabel: React.FC<Props>;
