import { Locale } from '../constants';
import type { BaseVersion } from '@voiceflow/base-types';
export interface Publishing extends BaseVersion.Publishing {
    forExport: boolean;
    hasAds: boolean;
    summary: string;
    invocationName: string;
    locales: [Locale, ...Locale[]];
    category: string;
    personal: boolean;
    keywords: string;
    smallIcon: string;
    largeIcon: string;
    description: string;
    invocations: string[];
    hasPurchase: boolean;
    forChildren: boolean;
    instructions: string;
    privacyPolicy: string;
    termsAndConditions: string;
    updatesDescription?: string;
}
export declare const defaultPublishing: ({ invocationName, hasPurchase, forExport, hasAds, forChildren, personal, smallIcon, largeIcon, invocations, summary, description, instructions, privacyPolicy, termsAndConditions, keywords, category, locales, updatesDescription, }?: Partial<Publishing>) => Publishing;
//# sourceMappingURL=publishing.d.ts.map