@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
10 lines (9 loc) • 453 B
TypeScript
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;