import { PipeTransform } from '@angular/core'; import { DateTime, DateTimeFormatOptions } from 'luxon'; export declare class ToFormatPipe implements PipeTransform { constructor(); transform(value: DateTime, format: string, options: DateTimeFormatOptions): string; }