import type * as Brevo from "../../../../index.js";
/**
 * @example
 *     {}
 */
export interface GetSmsTemplatesRequest {
    /** Number of documents returned per page */
    limit?: number;
    /** Index of the first document in the page */
    offset?: number;
    /** Sort the results in the ascending/descending order of record creation. Default order is **descending** if `sort` is not passed */
    sort?: Brevo.GetSmsTemplatesRequestSort;
}
