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