import { VNode } from "../../stencil-public-runtime"; export interface AdvocateRecruitmentDashboardViewProps { text: { callToActionText?: string; bodyTextPartOne?: string; bodyTextPartTwo?: string; linkText?: string; copyText?: string; url?: string; detailsTitle?: string; }; slots: { shareLink: VNode; referralTable: VNode; stats: VNode; }; states: { showTangoLink?: boolean; }; } export declare const AdvocateRecruitmentDashboardView: (props: AdvocateRecruitmentDashboardViewProps) => any;