import React from "react"; import { IGovernanceButton } from "../../components"; export interface IHeaderAction extends IGovernanceButton { label: string; } interface INavigationLink { label: string; onClick: () => void; } interface IGovernanceWidgetHeader { navigationLink?: INavigationLink; label?: string; description?: string | React.ReactNode; rightContent?: React.ReactNode; bottomContent?: React.ReactNode; headerActions?: IHeaderAction[]; } export declare const GovernanceWidgetHeader: React.FC; export {}; //# sourceMappingURL=GovernanceWidgetHeader.d.ts.map