UNPKG

@spaced-out/ui-design-system

Version:
13 lines 788 B
import * as React from 'react'; import type { Flow } from 'flow-to-typescript-codemod'; import type { ColorTypes } from '../../types/typography'; import type { InContextAlertProps } from '../../components/InContextAlert'; export interface InContextAlertWithMultipleActionsProps extends Omit<InContextAlertProps, 'inline' | 'secondaryActionText' | 'onSecondaryAction' | 'secondaryActionTextColor'> { inline?: boolean; secondaryActionText?: string; onSecondaryAction?: React.MouseEventHandler<HTMLAnchorElement>; secondaryActionTextColor?: ColorTypes; testId?: string; } export declare const InContextAlertWithMultipleActions: Flow.AbstractComponent<InContextAlertWithMultipleActionsProps, HTMLDivElement>; //# sourceMappingURL=InContextAlertWithMultipleActions.d.ts.map