import type { ReactNode } from 'react'; export interface AvatarProps { src?: string | null; alt?: string; firstname?: string | null; lastname?: string | null; large?: boolean; light?: boolean; } /** @deprecated use Avatar from kitt-universal instead */ export declare function Avatar({ light, ...props }: AvatarProps): ReactNode; //# sourceMappingURL=index.d.ts.map