import { InputProps } from "../Input/type.mjs";
import { CSSProperties } from "react";

//#region src/SearchBar/type.d.ts
interface SearchBarProps extends Omit<InputProps, 'styles' | 'classNames'> {
  classNames?: {
    input?: string;
    shortKey?: string;
  };
  defaultValue?: string;
  enableShortKey?: boolean;
  loading?: boolean;
  onInputChange?: (value: string) => void;
  onSearch?: (value: string) => void;
  shortKey?: string;
  spotlight?: boolean;
  styles?: {
    input?: CSSProperties;
    shortKey?: CSSProperties;
  };
  value?: string;
}
//#endregion
export { SearchBarProps };
//# sourceMappingURL=type.d.mts.map