/** * InlineConfirm Component * * Lightweight [Y/n] prompt for low-risk, reversible actions. * Replaces the hints bar temporarily with a single-line confirmation. * * @since v2.7.29 - New inline confirmation component */ import type React from 'react'; export interface InlineConfirmProps { message: string; onConfirm: () => void; onCancel: () => void; isActive?: boolean; defaultAction?: 'yes' | 'no'; } export declare function InlineConfirm({ message, onConfirm, onCancel, isActive, defaultAction }: InlineConfirmProps): React.ReactElement; //# sourceMappingURL=InlineConfirm.d.ts.map