import { IUser } from '@shared/interfaces/model';
interface IExportContentParams {
    output?: string;
    force?: boolean;
    include?: string[];
}
export declare const exportContent: ({ output, force, include, }?: IExportContentParams) => Promise<void>;
export declare const importContent: ({ user, options, file, include, }: {
    user?: IUser;
    file?: string;
    options?: {
        force?: string | boolean;
        publish?: string | boolean;
    };
    include?: string[];
}) => Promise<void>;
export {};
