@it-corp/vpbank-spotlight
Version:
Command center components for react and VPbank components
17 lines (16 loc) • 654 B
TypeScript
import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from "@it-corp/vpbank-core";
export type SpotlightEmptyStylesNames = "empty";
export interface SpotlightEmptyProps extends BoxProps, CompoundStylesApiProps<SpotlightEmptyFactory>, ElementProps<"div"> {
}
export type SpotlightEmptyFactory = Factory<{
props: SpotlightEmptyProps;
ref: HTMLDivElement;
stylesNames: SpotlightEmptyStylesNames;
compound: true;
}>;
export declare const SpotlightEmpty: import("@it-corp/vpbank-core").MantineComponent<{
props: SpotlightEmptyProps;
ref: HTMLDivElement;
stylesNames: SpotlightEmptyStylesNames;
compound: true;
}>;