import { Theme } from '@naturacosmeticos/natds-themes';
import { AvatarProps } from './Avatar.props';
declare type AvatarStyleProps = Pick<AvatarProps, 'size' | 'brand'>;
declare const styles: (data?: (AvatarStyleProps & {
    theme?: Theme | undefined;
}) | undefined) => import("jss").Classes<"label" | "image" | "icon" | "surface">;
export default styles;
