export type ImageLabelType = 'new_circle' | 'new' | 'beta' | 'ai';
export interface ImageLabelProps {
type: ImageLabelType;
}
/**
* 이미지에 오버레이되는 라벨을 표시하는 컴포넌트
* @param {('new_circle'|'new'|'beta'|'ai')} props.type - 표시할 라벨의 타입
* @returns {JSX.Element} 라벨 컴포넌트
* @example
* // NEW 원형 라벨
*
*
* // NEW 라벨
*
*
* // BETA 라벨
*
*
* // AI 라벨
*
*
*/
declare const ImageLabel: ({ type }: ImageLabelProps) => import("react/jsx-runtime").JSX.Element;
export { ImageLabel };