/// import { ViewProps } from "../View"; export interface Props extends ViewProps { title?: string; thumbnail?: string; skeleton?: boolean; selectable?: boolean; selected?: boolean; } declare const CardCategory: { (props: Props): JSX.Element; displayName: string; }; export default CardCategory;