interface Props {
/**
* @title 크기
* */
loading: boolean;
/**
* @title 돌아가기 이벤트
* @ignore
*/
onBack: () => void;
/**
* @title 클릭 이벤트 콜백 함수
* @ignore
*/
onClick?: () => void;
/**
* @title 라우트 선택 콜백 함수
* @param key - 선택된 라우트
* @ignore
*/
onSelect?: (key: string) => any;
/**
* @title Tooltip 팝업 위치
* @enum ['top', 'left', 'right', 'bottom', 'topLeft', 'topRight', 'bottomLeft', 'bottomRight', 'leftTop', 'leftBottom', 'rightTop', 'rightBottom']
* @enumNames ['위', '왼쪽', '오른쪽', '아래', '왼쪽 위', '오른쪽 위', '왼쪽 아래', '오른쪽 아래', '왼쪽 위', '왼쪽 아래', '오른쪽 위', '오른쪽 아래']
* @default 'top'
*/
placement?: TooltipPlacement;
/**
* @title 참조
* @ignore
*/
ref: any;
/**
* @title 아바타 모양
* @default 'square'
* @enum ['square', 'circle']
* @enumNames ['사각형', '원형']
*/
shape?: "square" | "circle";
}