import { CardProps } from '@heroui/react'; import { NotificationChannelFlags } from './notification-preferences.js'; export declare function SettingsPageHeader({ description, title }: { description?: string; title: string; }): import("react").JSX.Element; export declare function NotificationSettingsSection({ className, channels, showMute, setShowMute }: { channels?: NotificationChannelFlags; className?: string; showMute?: boolean; setShowMute?: (showMute: boolean) => void; }): import("react").JSX.Element; export declare function NotificationSettings({ channels, className, showMute, setShowMute, variant }: { channels?: NotificationChannelFlags; className?: string; showMute?: boolean; setShowMute?: (showMute: boolean) => void; variant?: CardProps["variant"]; }): import("react").JSX.Element; /** @deprecated Use NotificationSettings. Removed next major. */ export declare const WorkspaceNotificationsSettings: typeof NotificationSettings;