import { ComponentPropsWithoutRef } from 'react'; import { MultiViewItemType } from '../../utils/icon-utils'; type ViewPropsBase = { title: string; /** @internal Pass multiViewItems from useMDXContent() */ items: MultiViewItemType[]; }; type ViewProps = ViewPropsBase & Omit, keyof ViewPropsBase>; declare const View: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref">, keyof ViewPropsBase> & import('react').RefAttributes>; export { View }; export type { ViewProps }; //# sourceMappingURL=view.d.ts.map