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<HTMLDivElement> & Partial<Omit<InternalAlertProps, 'on'>> & {
    onCloserClick?: () => void;
    onAlertTimeout?: () => void;
};
declare const KolAlertFc: FC<KolAlertFcProps>;
export default KolAlertFc;
