shineout
Version:
A components library for React
13 lines (12 loc) • 421 B
TypeScript
/// <reference types="react" />
import CardGroup from './card-group';
type RefCardGroup = typeof CardGroup;
declare const Item: (<V>(props: import("./item.type").CardGroupItemProps<V>) => JSX.Element) & {
displayName: string;
};
export interface CardGroupComponent extends RefCardGroup {
displayName: string;
Item: typeof Item;
}
declare const CardGroupComp: CardGroupComponent;
export default CardGroupComp;