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