/// export interface LinkImageCardProps { url: string; title: string; subTitle: string; onEdit?: () => void; onUnlink?: () => void; } export declare function LinkImageCard(props: LinkImageCardProps): JSX.Element;