import { HttpRequest, HttpResponse } from "@ingestkorea/util-http-handler";
import { SensCommand, GetAlimtalkTemplateInput, GetAlimtalkTemplateOutput, MetadataBearer } from "../models";
import { SensClientResolvedConfig } from "../SensClient";
export interface GetAlimtalkTemplateCommandInput extends GetAlimtalkTemplateInput {
}
export interface GetAlimtalkTemplateCommandOutput extends GetAlimtalkTemplateOutput, MetadataBearer {
}
export declare class GetAlimtalkTemplateCommand extends SensCommand<GetAlimtalkTemplateCommandInput, GetAlimtalkTemplateCommandOutput, SensClientResolvedConfig> {
    input: GetAlimtalkTemplateCommandInput;
    constructor(input: GetAlimtalkTemplateCommandInput);
    serialize(input: GetAlimtalkTemplateCommandInput, config: SensClientResolvedConfig): Promise<HttpRequest>;
    deserialize(response: {
        response: HttpResponse;
        output: MetadataBearer;
    }): Promise<GetAlimtalkTemplateCommandOutput>;
}
