import { Article as ArticleClass, IArticle } from '../../../Models';
export interface IKlarnaArticle extends IArticle {
    imageUrl?: string;
    productUrl?: string;
}
export default class Article extends ArticleClass {
    get description(): string;
    set description(description: string);
    get vatPercentage(): number;
    set vatPercentage(value: number);
    get identifier(): string;
    set identifier(identifier: string);
    set imageUrl(imageUrl: string);
    set productUrl(productUrl: string);
    set(name: string, value: any, hidden?: boolean): this;
}
