import React from 'react';
import type { AudioProps } from './Audio';
import type { RenderAttachmentProps } from './utils';
export declare const CardAudio: ({ og: { asset_url, author_name, mime_type, og_scrape_url, text, title, title_link }, }: AudioProps) => React.JSX.Element;
export type CardProps = RenderAttachmentProps['attachment'];
/**
 * Simple Card Layout for displaying links
 */
export declare const Card: (props: CardProps) => React.JSX.Element;
