import { TNotification } from '../types';
interface INotificationInput {
    title?: string;
    position?: number;
    type: 'success' | 'error';
    text: string;
}
export declare const createNotification: ({ title, type, text, position, }: INotificationInput) => TNotification;
export {};
