import { FlexboxProps } from "../../Flex/type.mjs";
import { FC } from "react";

//#region src/mdx/Callout/index.d.ts
interface CalloutProps extends FlexboxProps {
  type?: 'tip' | 'error' | 'important' | 'info' | 'warning';
}
declare const Callout: FC<CalloutProps>;
//#endregion
export { Callout, CalloutProps };
//# sourceMappingURL=index.d.mts.map