import { AspectRatio } from '@carbon/react'; import { ReactNode } from 'react'; import { MdxComponent } from '../interfaces'; type Color = 'light' | 'dark'; type ActionIcon = 'launch' | 'arrowRight' | 'download' | 'email' | 'calendar'; type AspectRatio = '2:1' | '1:1' | '16:9' | '4:3'; interface ResourceCardProps { children: ReactNode; component?: ReactNode | null; className?: string | null; href?: string | null; subTitle?: string | null; title?: string | null; color?: Color | null; disabled?: boolean | null; actionIcon?: ActionIcon | null; aspectRatio?: AspectRatio | null; } /** * The `` component should be wrapped within the `` component, * this grid wrapper component will add correct spacing and borders between cards. * *``` * * * * * ![](img.png) * * * * * ``` */ export declare const ResourceCard: MdxComponent; export {};