import { Response } from '../utils/response';
export declare function createPost(params: {
    title: string;
    body: string;
    tags: string[];
    beneficiaries?: {
        account: string;
        weight: number;
    }[] | null;
    permalink?: string;
    max_accepted_payout?: string;
    percent_hbd?: number;
    allow_votes: boolean;
    allow_curation_rewards: boolean;
}): Promise<Response>;
export declare function createComment(params: {
    parent_author: string;
    parent_permlink: string;
    body: string;
    permalink?: string;
    beneficiaries?: {
        account: string;
        weight: number;
    }[] | null;
    max_accepted_payout?: string;
    percent_hbd?: number;
    allow_votes: boolean;
    allow_curation_rewards: boolean;
}): Promise<Response>;
