You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
843 B
15 lines
843 B
import { CardProps } from './Card';
|
|
import { CardDividerProps } from './Card.Divider';
|
|
import { CardFeaturedSubtitleProps } from './Card.FeaturedSubtitle';
|
|
import { CardFeaturedTitleProps } from './Card.FeaturedTitle';
|
|
import { CardImageProps } from './Card.Image';
|
|
declare const Card: import("..").RneFunctionComponent<CardProps> & {
|
|
Divider: import("..").RneFunctionComponent<CardDividerProps>;
|
|
Image: import("..").RneFunctionComponent<CardImageProps>;
|
|
Title: import("..").RneFunctionComponent<import("./Card.Title").CardTitleProps>;
|
|
FeaturedTitle: import("..").RneFunctionComponent<CardFeaturedTitleProps>;
|
|
FeaturedSubtitle: import("..").RneFunctionComponent<CardFeaturedSubtitleProps>;
|
|
};
|
|
export { Card };
|
|
export type { CardProps, CardDividerProps, CardFeaturedSubtitleProps, CardFeaturedTitleProps, CardImageProps, };
|