import React from 'react'; import type { NewIconProps } from '@atlaskit/icon'; import { type ObjectProps } from './types'; type ObjectBaseProps = ObjectProps & { icon: React.ComponentType; color: NewIconProps['color']; }; /** * __Object base__ * * An object represents an Atlassian-specific content type. * */ export default function ObjectBase({ label, size, testId, color, icon: Icon, }: ObjectBaseProps): React.JSX.Element; export {};