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>;
