UNPKG

@redocly/theme

Version:

Shared UI components lib

11 lines (10 loc) 593 B
import { JSX } from 'react'; import { Select } from '../../components/Select/Select'; import { CatalogSwitcherItem } from '../../core/types'; export type CatalogSelectorProps = { catalogSwitcherItems: CatalogSwitcherItem[]; onChange: () => void; }; export declare function CatalogSelector({ catalogSwitcherItems, onChange, }: CatalogSelectorProps): JSX.Element; export declare const CatalogSelectWrapper: import("styled-components").StyledComponent<"div", any, {}, never>; export declare const CatalogSelect: import("styled-components").StyledComponent<typeof Select, any, {}, never>;