import { ViewProps } from "@vnxjs/components/types/View";
import { ReactNode } from "react";
interface SearchLabelProps extends ViewProps {
    children?: ReactNode;
}
declare function SearchLabel(props: SearchLabelProps): JSX.Element;
export default SearchLabel;
