UNPKG

@devfamily/admiral

Version:

Admiral is a frontend framework for creating back office using React. It provides out-of-the-box components and tools that make developing an admin interface easy and fast.

10 lines (9 loc) 363 B
import React from 'react'; import { Select } from '../Select'; import type { SelectProps } from '../Select/interfaces'; interface MiniOrMiddleSelectInterface extends React.FC<SelectProps> { Option: typeof Select.Option; } export declare const MiddleSelect: MiniOrMiddleSelectInterface; export declare const MiniSelect: MiniOrMiddleSelectInterface; export {};