import { BaseTestConfig } from '../../tests/test-framework';
import { PktLinkCard, IPktLinkCard } from './linkcard';
export interface LinkCardTestConfig extends IPktLinkCard, BaseTestConfig {
}
export declare const createLinkCardTest: (config?: LinkCardTestConfig) => Promise<{
    container: HTMLElement;
    linkCard: PktLinkCard;
    link: HTMLAnchorElement;
}>;
