import { SxProps } from '@mui/material/styles'; export interface TipSectionProps { message: React.ReactNode; tipAriaLabel?: string; onDismiss?: () => void; onAction?: () => void; sx?: SxProps; } export declare const TipSection: ({ message, tipAriaLabel, onDismiss, onAction, sx }: TipSectionProps) => import("react/jsx-runtime").JSX.Element;