You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
360 B
TypeScript

export interface PopupClasses {
/** Class name applied to the root element. */
root: string;
/** Class name applied to the root element when the popup is open. */
open: string;
}
export type PopupClassKey = keyof PopupClasses;
export declare function getPopupUtilityClass(slot: string): string;
export declare const popupClasses: PopupClasses;