import React from 'react'; export type ShellCommandWarningDecision = 'yes' | 'no' | 'dont-show-again'; export interface ShellCommandWarningProps { command: string; onDecision: (decision: ShellCommandWarningDecision) => void; } export declare function truncateShellCommandWarningCommand(text: string, max?: number): string; export declare function ShellCommandWarning({ command, onDecision, }: ShellCommandWarningProps): React.ReactElement; //# sourceMappingURL=shell-command-warning.d.ts.map