@spaced-out/ui-design-system
Version:
Sense UI components library
13 lines • 788 B
TypeScript
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