import { ShoutResponse } from "./types";
import { Base } from "../base";
export declare class Shouts extends Base {
    /**
     * This gets the latest posted shouts
     * @remarks MINIMUM_API_VERSION=380001
     * @param [params.username] Username to find
     * @param [params.limit] Maximum number of results to return
     * @see {@link https://ampache.org/api/api-json-methods#last_shouts}
     */
    last_shouts(params?: {
        username?: string;
        limit?: number;
    }): Promise<{
        shout: ShoutResponse[];
    }>;
}
