import { StoreAvatarVariants } from './Store.css';
import { PropsWithBox } from '../../Box';
import { DataAttributes } from '../../types';

export type StoreAvatarProps = PropsWithBox<DataAttributes & {
    className?: string;
    initials?: string;
    src?: string;
}> & StoreAvatarVariants;
export declare const Store: {
    (props: StoreAvatarProps): JSX.Element;
    displayName: string;
};
