import { FC, ReactNode, ComponentProps } from 'react'; type BlockquoteType = FC>; type T = (typeof GITHUB_ALERTS)[number]; declare const GITHUB_ALERTS: readonly ["note", "tip", "important", "warning", "caution"]; declare function withGitHubAlert(fn: FC<{ type: T; children: ReactNode; }>, Component?: BlockquoteType | 'blockquote'): BlockquoteType; export { withGitHubAlert };