/**
* GNB(Global Navigation Bar) 리스트 컴포넌트
*
* @description
* 드롭다운 형태의 GNB 메뉴 리스트를 제공합니다.
* - 사용자 정보 포함/미포함 두 가지 형태
*
* @module GNBList
* @property {Component} Root - 메뉴 컨테이너
* @property {Component} UserInfo - 사용자 정보 영역
* @property {Component} List - 메인 메뉴 그룹
* @property {Component} SubList - 서브 메뉴 그룹
* @property {Component} Item - 메뉴 아이템
*
* @example
* // 기본 메뉴 리스트
*
*
* 프로젝트
* 의뢰하기
* 고객센터
*
*
* 설정
*
*
*
* @example
* // 사용자 정보 포함 메뉴
*
* handleProfileEdit()}
* >
*
*
*
*
* 계정 설정
* 알림
*
*
* 로그아웃
*
*
*/
declare const GNBList: {
Root: ({ withUserInfo, children, className, }: import("./GNBList.types").GNBListRootProps) => import("react/jsx-runtime").JSX.Element;
UserInfo: ({ imgUrl, username, email, children, onClick, }: import("./GNBList.types").UserInfoProps) => import("react/jsx-runtime").JSX.Element;
List: ({ children }: import("react").PropsWithChildren) => import("react/jsx-runtime").JSX.Element;
SubList: ({ children }: import("react").PropsWithChildren) => import("react/jsx-runtime").JSX.Element;
Item: ({ hasNew, children, className, textClassName, href, as, ...rest }: import("./GNBList.types").GNBListItemProps) => import("react/jsx-runtime").JSX.Element;
};
export { GNBList };