import type { Notification } from './types'; export interface ApprovalRequestNotificationTileProps { notification: Notification; onApprove: (approvalRequestId: string) => void | Promise; onReject: (approvalRequestId: string) => void | Promise; onComplete: (id: string) => void; onSettle?: (id: string) => void; liveDurationMs?: number; defaultExpanded?: boolean; className?: string; } export declare function ApprovalRequestNotificationTile({ notification, onApprove, onReject, onComplete, onSettle, liveDurationMs, defaultExpanded, className, }: ApprovalRequestNotificationTileProps): import("react").JSX.Element | null; //# sourceMappingURL=approval-request-notification-tile.d.ts.map