import { toast as defaultToast } from '../../hooks/use-toast'; export interface HelpCenterListProps { /** Toast override (test-friendly). Defaults to the lib's shared * toast singleton. */ toast?: typeof defaultToast; /** Back-button forwarded to the internal `DevSectionPage` chrome (same shape * as `DevSectionPage` / `LegalDocumentPage`: `{ label?, href? }`, or `false` * to hide). Omit ⇒ `DevSectionPage`'s default (`Back to home` → `/`), which * embedders whose home isn't `/` MUST override. */ backButton?: { label?: string; href?: string; } | false; /** Override the hero title (forwarded to `DevSectionPage.title`). Defaults to * the `tickets` section copy ("Help Center"). Set this to brand the surface * for an embed that wants its own label (e.g. "Support Tickets"). */ title?: string; /** Render the standalone `` (forwarded to the internal * `DevSectionPage`). Default true. Pass false when the host layout already * provides the page container (avoids a nested `
`). */ shell?: boolean; } export declare function HelpCenterList({ toast, backButton, title, shell }?: HelpCenterListProps): import("react").JSX.Element; //# sourceMappingURL=help-center-list.d.ts.map