mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 01:22:49 +00:00
11 lines
467 B
TypeScript
11 lines
467 B
TypeScript
import { TransitionStatus } from 'react-transition-group';
|
|
import type { NotificationsProps } from './Notifications';
|
|
interface NotificationStateStylesProps {
|
|
state: TransitionStatus;
|
|
maxHeight: number | string;
|
|
position: NotificationsProps['position'];
|
|
transitionDuration: number;
|
|
}
|
|
export declare function getNotificationStateStyles({ state, maxHeight, position, transitionDuration, }: NotificationStateStylesProps): React.CSSProperties;
|
|
export {};
|