import { AptlyBaseSchema, AptlyHistorySchema } from './extends.js';
export type AptlyUpsellTemplate = AptlyUpsellTemplateSchema<string, string>;
export interface AptlyUpsellTemplateSchema<ID, DATE> extends AptlyBaseSchema<ID, DATE>, AptlyHistorySchema<ID, DATE> {
    image?: string | null;
    imageMedia?: string | null;
    videoEmbed?: string;
    text?: string;
    links: ID[];
    organization?: ID;
    project?: ID;
    created: DATE;
    description: string;
}
