UNPKG

@kaspersky/components

Version:

Kaspersky Design System UI Kit

17 lines (16 loc) 902 B
import React, { PropsWithChildren } from 'react'; import { Select as AntdSelect } from 'antd'; import { SelectProps } from './types.js'; export declare const Option: import("rc-select/lib/Option").OptionFC; export declare const MultiSelectCheckBox: import("styled-components").StyledComponent<({ className }: any) => JSX.Element, any, {}, never>; export declare const EmptyData: () => JSX.Element; export declare const ChevronIcon: () => JSX.Element; export declare const SearchIcon: () => JSX.Element; export declare const ClearIcon: () => JSX.Element; export declare const maxTagPlaceholder: SelectProps['maxTagPlaceholder']; declare type SelectComponent = React.ForwardRefExoticComponent<PropsWithChildren<SelectProps> & React.RefAttributes<HTMLElement>> & { Option: typeof AntdSelect.Option; OptGroup: typeof AntdSelect.OptGroup; }; export declare const Select: SelectComponent; export {};