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;
