@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
9 lines • 405 B
TypeScript
import * as React from 'react';
export interface MenuSearchProps extends React.HTMLProps<HTMLElement> {
/** Items within search */
children?: React.ReactNode;
/** @hide Forwarded ref */
innerRef?: React.Ref<any>;
}
export declare const MenuSearch: React.ForwardRefExoticComponent<Omit<MenuSearchProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=MenuSearch.d.ts.map