import type { ReactNode, CSSProperties } from "react";
export interface SearchWrapperProps {
    id?: string;
    className?: string;
    style?: CSSProperties;
    children: ReactNode;
}
export declare const SearchWrapper: import("react").ForwardRefExoticComponent<SearchWrapperProps & import("react").RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=search-wrapper.d.ts.map