import { IconType } from '@mintlify/models';
export type MultiViewItemType = {
    title: string;
    content: string;
    icon?: string;
    iconType?: IconType;
    id?: string;
};
