@i-novus/ui-core
Version:
Базовые UI компоненты
12 lines (11 loc) • 371 B
TypeScript
import { CompoundComponent } from '../../core';
import { Header } from './Header';
import { Content } from './Content';
import { Footer } from './Footer';
import { PopoverProps } from './types';
export * from './types';
export declare const Popover: CompoundComponent<PopoverProps, {
Content: typeof Content;
Footer: typeof Footer;
Header: typeof Header;
}>;