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