import { NotificationTypeUiCommand } from './enums';
export interface SendNotificationCommandArgumentsOptions {
    helpLabel?: string;
    helpLink?: string;
    autoClose?: number;
}
export interface SendNotificationCommandArguments {
    message: string;
    icon: string;
    type: NotificationTypeUiCommand;
    options?: SendNotificationCommandArgumentsOptions;
    content?: string;
    small?: boolean;
}
export interface SetEnableDisplayNotificationsArguments {
    isNotificationDisplayEnabled: boolean;
}
export interface UiCommandsNotificationObject {
    send: (information: SendNotificationCommandArguments) => void;
    setEnabledDisplayNotifications: (isNotificationDisplayEnabled: boolean) => void;
}
