import { ReactNode } from 'react'; import { WithSupportProps } from '@snack-uikit/utils'; export type CollapseBlockHeaderProps = WithSupportProps<{ title: string; description?: string; tip?: ReactNode; }>; export declare function CollapseBlockHeader({ title, description, tip }: CollapseBlockHeaderProps): import("react/jsx-runtime").JSX.Element;