UNPKG

@clayui/drop-down

Version:
16 lines (15 loc) 404 B
/** * SPDX-FileCopyrightText: © 2019 Liferay, Inc. <https://liferay.com> * SPDX-License-Identifier: BSD-3-Clause */ import React from 'react'; declare type Context = { close: () => void; closeOnClick: boolean; filterKey?: string; onSearch: (value: string) => void; search: string; tabFocus: boolean; }; export declare const DropDownContext: React.Context<Context>; export {};