import { BaseTestConfig } from '../../tests/test-framework';
export interface CardTestConfig extends BaseTestConfig {
    skin?: string;
    layout?: string;
    padding?: string;
    borderOnHover?: boolean;
    heading?: string;
    subheading?: string;
    headingLevel?: number;
    href?: string;
    linkText?: string;
    image?: string;
    imageAlt?: string;
    tags?: string;
    metaPrefix?: string;
    metaLabel?: string;
    metaDate?: string;
}
export declare const createCardTest: (config?: CardTestConfig) => Promise<{
    container: HTMLElement;
    card: import('./card').PktCard;
}>;
