@mskcc/carbon-react
Version:
Carbon react components for the MSKCC DSM
15 lines (14 loc) • 593 B
TypeScript
/**
* Copyright IBM Corp. 2021
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
import React from 'react';
import { type SearchProps } from '../Search';
declare function ExpandableSearch({ onBlur, onChange, onExpand, onFocus, defaultValue, isExpanded, ...props }: SearchProps): JSX.Element;
declare namespace ExpandableSearch {
var propTypes: React.WeakValidationMap<SearchProps & React.RefAttributes<HTMLInputElement>> | undefined;
var displayName: string;
}
export default ExpandableSearch;