/**
 * Datentyp für einen Footer-Link.
 */
export interface PdFooterLink {
    key: string;
    name: string;
}
/**
 * Datentyp für den "madeBy"-Block.
 */
export interface PdFooterMadeBy {
    txt: string;
    email?: string;
    link?: string;
}
export interface PdMenuItem {
    key: string;
    name: string;
    route?: string;
    sec?: string;
    icon?: string;
    action?: () => void;
    ref?: HTMLElement;
}
//# sourceMappingURL=types.d.ts.map