import { Argument } from '.';
/**
 * @category Argument
 */
export declare class Heredoc extends Argument {
    /**
     * Construct heredoc argument.
     *
     * @param content string or object, object will be stringify
     */
    constructor(content: string | Record<any, any>);
}
/**
 * Convenient function to construct new [[Heredoc]].
 *
 * @param content string or object, object will be stringify
 *
 * @category Argument
 */
export declare const heredoc: (content: string | Record<any, any>) => Heredoc;
