import { type ReactNode } from 'react'; import type { MergeRight } from '../../utilities'; import { type ButtonProps } from '../button/button'; export type SearchButtonProps = MergeRight; /** * SearchButton component, used to display a search button within a Search component. * * @example * * * Søk * */ export declare const SearchButton: import("react").ForwardRefExoticComponent, "command" | "commandfor" | "commandFor">, "type" | "data-color" | "command" | "commandfor" | "commandFor" | "variant" | "icon" | "loading" | "asChild"> & { variant?: "primary" | "secondary" | "tertiary"; 'data-color'?: import("packages/types/dist/types").Color | Extract; icon?: boolean; loading?: boolean | ReactNode; asChild?: boolean; type?: import("react").ButtonHTMLAttributes["type"]; command?: string; commandfor?: string; commandFor?: string; } & import("react").RefAttributes>; //# sourceMappingURL=search-button.d.ts.map