import { PropertyDescriptorParams, PropertyDescriptor } from "./PropertyDescriptor"; export interface HeaderParams extends PropertyDescriptorParams { name: string; } /** * An OFX element, applied to a javabean property. */ export declare class Header extends PropertyDescriptor { private _name; constructor(params: HeaderParams); /** * The name of the element. * * @return The name of the element. */ name(): string; }