UNPKG

@it-corp/vpbank-spotlight

Version:

Command center components for react and VPbank components

17 lines (16 loc) 780 B
import { BoxProps, CompoundStylesApiProps, ElementProps, Factory, InputProps, InputStylesNames } from "@it-corp/vpbank-core"; export type SpotlightSearchStylesNames = InputStylesNames; export interface SpotlightSearchProps extends BoxProps, Omit<InputProps, "classNames" | "styles" | "vars" | "variant">, CompoundStylesApiProps<SpotlightSearchFactory>, ElementProps<"input", "size"> { } export type SpotlightSearchFactory = Factory<{ props: SpotlightSearchProps; ref: HTMLInputElement; stylesNames: SpotlightSearchStylesNames; compound: true; }>; export declare const SpotlightSearch: import("@it-corp/vpbank-core").MantineComponent<{ props: SpotlightSearchProps; ref: HTMLInputElement; stylesNames: SpotlightSearchStylesNames; compound: true; }>;