import { Options } from "../../../../misc/Options";
/**
 * Delete all stored templates for an account
 */
export declare class FlushTemplatesOptions extends Options {
    /**
     * Override the EENGINE_TIMEOUT environment variable for a single API request (in milliseconds)
     */
    'x-ee-timeout'?: number | undefined;
    /**
     * Account ID
     */
    'account': string | undefined;
    /**
     * Must be true in order to flush templates
     */
    'force'?: boolean | undefined;
}
