import { type FunctionalComponent as FC } from '../../stencil-public-runtime'; import { type JSXBase } from '../../stencil-public-runtime'; import { type InternalAlertProps } from '../../schema'; export type KolAlertFcProps = JSXBase.HTMLAttributes & Partial> & { onCloserClick?: () => void; onAlertTimeout?: () => void; }; declare const KolAlertFc: FC; export default KolAlertFc;