/** * diwa-inline-notification-styles.ts * ==================================== * CSS-in-JS styles for . * * The notification is a static flex-row banner: * [icon-wrap] [content: heading + description] [actions: action-btn + dismiss-btn] * * Background and border colours are driven entirely by the `state` prop. * All values are CSS custom properties so that the [data-theme="light"] * overrides in app.css cascade into the Shadow DOM correctly. */ import type { InlineNotificationState } from './types'; export declare const getComponentCss: (state: InlineNotificationState) => string; //# sourceMappingURL=diwa-inline-notification-styles.d.ts.map