import Handlebars from 'handlebars';
import { Post, TemplateData } from '../types';
interface AuthorsOptions {
    hash?: {
        separator?: string;
        prefix?: string;
        suffix?: string;
        limit?: string | number;
        from?: string | number;
        to?: string | number;
    };
}
export declare function authorsHelper(this: TemplateData & {
    post?: Post;
}, options: AuthorsOptions): Handlebars.SafeString;
export {};
//# sourceMappingURL=authors.d.ts.map