@vtex/admin-ui
Version:
> VTEX admin component library
8 lines (7 loc) • 379 B
TypeScript
import type { ComponentPropsWithRef } from 'react';
import type { SearchFormState } from './hooks/useSearchState';
export declare const Search: import("@vtex/admin-ui-react").AdminUIJsxElement<"form", SearchOptions, {}>;
export interface SearchOptions {
state: SearchFormState;
}
export declare type SearchProps = ComponentPropsWithRef<typeof Search> & SearchOptions;