/// <reference types="react" />
import './search.scss';
/**
 * @specs https://m3.material.io/components/search/specs
 */
export declare const Search: import("react").ForwardRefExoticComponent<{
    placeholder?: string | undefined;
    leadingIcon?: React.ReactNode;
    trailingIcon?: React.ReactNode;
    /**
     * @default bar
     */
    sd?: "view" | "bar" | undefined;
    value?: string | undefined;
    onChange?: ((value: string) => void) | undefined;
} & Omit<import("react").HTMLProps<HTMLElement>, "as" | "ref" | "placeholder" | "value" | "onChange" | "trailingIcon" | "sd" | "leadingIcon"> & import("react").RefAttributes<HTMLDivElement>>;
