export interface TicketAlertsButtonProps { /** BASE path of the host's tickets surface — may carry ANY nesting * prefix (hub `/tickets`, console `/help-center/tickets`, an * embedder's `/support/portal/tickets`). The deep link is built by * the SSOT `buildTicketOpenHref` (`?ticket=` — the same * param `HelpCenterList` derives its drawer state from; opening the * drawer also smooth-scrolls the row). */ href: string; /** Host navigation (router push) — receives the FULL computed href. * Defaults to `window.location.assign`. */ onNavigate?: (href: string) => void; disabled?: boolean; className?: string; } export declare function TicketAlertsButton({ href, onNavigate, disabled, className }: TicketAlertsButtonProps): import("react").JSX.Element | null; export default TicketAlertsButton; //# sourceMappingURL=ticket-alerts-button.d.ts.map