@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
15 lines (14 loc) • 556 B
TypeScript
import type { JSX } from '../../stencil-public-runtime';
import type { DialogProps, KoliBriDialogEventCallbacks, LabelPropType } from '../../schema';
import type { ModalVariantPropType } from '../../schema/props/variant/modal';
export declare class KolModal implements DialogProps {
private dialogRef?;
private readonly catchRef;
openModal(): Promise<void>;
closeModal(): Promise<void>;
render(): JSX.Element;
_label: LabelPropType;
_on?: KoliBriDialogEventCallbacks;
_width?: string;
_variant?: ModalVariantPropType;
}