urbi-exhibitions
Version:
11 lines (10 loc) • 415 B
TypeScript
import { Complex } from '../../types';
export interface ComplexCardProps {
complex: Complex;
className?: string;
architectsLabel?: string;
yearLabel?: string;
style?: React.CSSProperties;
dir?: string;
}
export declare const ComplexCard: import('react').MemoExoticComponent<({ complex, className, architectsLabel, yearLabel, style, dir, }: ComplexCardProps) => import("react").JSX.Element>;