@empoleon/spotlight
Version:
Command center components for react and Empoleon
17 lines (16 loc) • 769 B
TypeScript
import { BoxProps, CompoundStylesApiProps, ElementProps, Factory, InputProps, InputStylesNames } from '@empoleon/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("@empoleon/core").EmpoleonComponent<{
props: SpotlightSearchProps;
ref: HTMLInputElement;
stylesNames: SpotlightSearchStylesNames;
compound: true;
}>;