import React from 'react';
import { IconProps } from '@open-condo/icons';
export type CardLinkType = {
    LinkWrapper?: React.FC<{
        children: React.ReactElement;
        href: string;
    }>;
    label: string;
    href: string;
    PreIcon?: React.FC<IconProps>;
    AfterIcon?: React.FC<IconProps>;
    openInNewTab?: boolean;
};
export declare const renderLink: (linkProps: CardLinkType) => JSX.Element;
//# sourceMappingURL=index.d.ts.map