import React from 'react';
import { FlintToaster as FlintToasterElement } from '@getufy/flint-ui/sonner/flint-sonner';
/**
* Toast container. Place **once** in your application (typically in `
`).
Toasts are created imperatively via the `toast()` function.
*/
export interface FlintToasterProps extends React.HTMLAttributes {
/**
* Position of the toast stack relative to the viewport.
* Allowed values: 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right'
*/
position?: 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right';
/** Default auto-dismiss duration in milliseconds. */
duration?: number;
/** Maximum number of toasts visible simultaneously. */
visibleToasts?: number;
}
export declare const FlintToaster: React.ForwardRefExoticComponent>;