interface AppSyncError {
    message: string;
    errorType: string;
    data: object;
    errorInfo: object;
}
interface AppSync {
    result: object;
    error: AppSyncError;
    errors: AppSyncError[];
}
export declare function render(fileName: string, inputContext?: object): Promise<AppSync>;
export {};
