import { DateTime } from '../main';
/**
 * Returns an ISO 8601-compliant string representation of this DateTime.
 * @public
 * @param date - DateTime
 * @return ISO 8601 compliant string representation of the given DateTime
 */
export declare function formatIso(date: DateTime, options?: {
    format?: string;
}): string;
