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