import React, { HTMLAttributes, SVGProps } from 'react';
import { HeaderProps } from 'components/Elements';
export interface IHeaderPopupLink {
id: string;
image?: React.FC>;
text: string;
}
export interface HeaderModalProps extends HTMLAttributes, Pick {
profile: {
name: string;
avatarUrl: string;
email: string;
};
popupDisabled?: boolean;
popupLinks: IHeaderPopupLink[];
}
//# sourceMappingURL=HeaderModal.props.d.ts.map