interface DecryptButtonProps { /** Whether an encryption key has been obtained (decryption is active). */ decrypted?: boolean; /** Whether the key is currently being fetched. */ loading?: boolean; /** Called when the user clicks to initiate decryption. */ onClick?: () => void; } /** * Decrypt/Decrypted button using Geist secondary style. * Three states: idle (secondary gray), decrypting (spinner), decrypted (green success). */ export declare function DecryptButton({ decrypted, loading, onClick, }: DecryptButtonProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=decrypt-button.d.ts.map