/**
 * "fastify/view" interfaces
 * @see https://github.com/fastify/point-of-view/blob/master/types/index.d.ts
 * @publicApi
 */
export interface FastifyViewOptions {
    engine: {
        ejs?: any;
        eta?: any;
        nunjucks?: any;
        pug?: any;
        handlebars?: any;
        mustache?: any;
        'art-template'?: any;
        twig?: any;
        liquid?: any;
        dot?: any;
    };
    templates?: string | string[];
    includeViewExtension?: boolean;
    options?: object;
    charset?: string;
    maxCache?: number;
    production?: boolean;
    defaultContext?: object;
    layout?: string;
    root?: string;
    viewExt?: string;
    propertyName?: string;
    asyncProperyName?: string;
}
